2016-06-13 132 views
0

我沒有很好地描述這個問題,所以我編輯了一個清晰的問題。notifyDataSetChanged()刷新整個佈局

我很困惑:我寫了一個RelativeLayout的DragViewGroupgridview的,我注意到,每當我用notifyDatasetChanged()時間方法將導致DragViewGroup做重繪的東西。而且DragViewGroup延伸LinearLayout它使用ViewDragHelper,所以我無法保持已經滾動的位置。

這裏是我的xml文件:

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:orientation="vertical"> 
<com.xxxx.DragViewGroup 
    android:id="@+id/dragview" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:background="#3f83f7" 
    android:orientation="vertical"> 

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="665dp" 
     android:orientation="vertical"> 
     <RelativeLayout 
      android:layout_width="match_parent" 
      android:layout_height="310dp" 
      android:id="@+id/mainview" 
      > 

      ... 

     </RelativeLayout> 

     <include 
      android:layout_width="match_parent" 
      android:layout_height="355dp" 
      android:layout_marginBottom="62dp" 
      layout="@layout/fake_panel" /> 

    </LinearLayout> 
</com.xxxx.DragViewGroup> 
<RelativeLayout 
    android:layout_width="match_parent" 
    android:id="@+id/layout" 
    android:layout_alignParentBottom="true" 
    android:layout_height="210dp" 
    android:background="#ffffff" 
    android:clickable="true" 
    > 

    <HorizontalScrollView 
     android:id="@+id/btn_scroll_view" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:overScrollMode="never" 
     android:layout_alignParentBottom="true" 
     android:layout_marginBottom="26dp" 
     android:scrollbars="none"> 

     <LinearLayout 
      android:layout_width="match_parent" 
      android:layout_height="match_parent"> 

      <GridView 
       android:id="@+id/list" 
       android:layout_width="match_parent" 
       android:layout_height="match_parent" 
       android:layout_margin="10dp" 
       android:listSelector="@color/transparent" 
       android:horizontalSpacing="6dp" 
       android:scrollbars="none" /> 
     </LinearLayout> 
    </HorizontalScrollView> 

    <com.xxxx.UniversalSeekBar 
     .... 
     android:layout_marginTop="18dp"/> 
</RelativeLayout> 

</RelativeLayout> 

DragViewGroup代碼:

public class DragViewGroup extends LinearLayout { 
    private ViewDragHelper viewDragHelper; 
    private View mainView; 
    private int mainHeight; 



public DragViewGroup(Context context) { 
    super(context); 
    initView(); 
} 

public DragViewGroup(Context context, AttributeSet attrs) { 
    super(context, attrs); 
    initView(); 
} 

public DragViewGroup(Context context, AttributeSet attrs, int defStyleAttr)   { 
    super(context, attrs, defStyleAttr); 
    initView(); 
} 

@Override 
protected void onFinishInflate() { 
    super.onFinishInflate(); 
    mainView = getChildAt(0); 
} 

@Override 
protected void onSizeChanged(int w, int h, int oldw, int oldh) { 
    super.onSizeChanged(w, h, oldw, oldh); 
    mainHeight = mainView.findViewById(R.id.mainview).getMeasuredHeight(); 
} 

@Override 
public boolean onInterceptTouchEvent(MotionEvent ev) { 
    return viewDragHelper.shouldInterceptTouchEvent(ev); 
} 

@Override 
public boolean onTouchEvent(MotionEvent event) { 
    viewDragHelper.processTouchEvent(event); 
    return true; 
} 

@Override 
public void computeScroll() { 
    if (viewDragHelper.continueSettling(true)) { 
     ViewCompat.postInvalidateOnAnimation(this); 
    } 
} 

private void initView() { 
    viewDragHelper = ViewDragHelper.create(this, callback); 
} 

private ViewDragHelper.Callback callback = new ViewDragHelper.Callback() { 
    @Override 
    public boolean tryCaptureView(View child, int pointerId) { 
     return mainView == child; 
    } 

    @Override 
    public int clampViewPositionHorizontal(View child, int left, int dx) { 
     return 0; 
    } 

    @Override 
    public int clampViewPositionVertical(View child, int top, int dy) { 
     return top; 
    } 

    @Override 
    public void onViewReleased(View releasedChild, float xvel, float yvel) { 
     super.onViewReleased(releasedChild, xvel, yvel); 
     if (mainView.getTop() > -500) { 
      viewDragHelper.smoothSlideViewTo(mainView, 0, 0); 
      ViewCompat.postInvalidateOnAnimation(DragViewGroup.this); 

     } else { 
      viewDragHelper.smoothSlideViewTo(mainView, 0, -mainHeight); 
      ViewCompat.postInvalidateOnAnimation(DragViewGroup.this); 

     } 
    } 

}; 

} 

一旦我使用notifyDatasetChanged()方法來更新GridView控件,我DragViewGroup將滑動到原來的位置本身雖然它被拖過去了。顯然,該方法繪製整個佈局,而不是僅繪製gridview本身。

我需要保持DragViewGroup的拖動後的位置,我已經試過在DragViewGroup那些重載的onDraw方法是這樣的:

@Override 
protected void onDraw(Canvas canvas) { 
    super.onDraw(canvas); 
    // set isDragged label in onViewReleased() 
    if (isDragged) { 
     viewDragHelper.smoothSlideViewTo(main, 0, -mainHeight); 
    } 
} 

它的工作原理,但有一個明顯的滑動過程,我不想。 希望有人能幫助我。非常感謝。

+0

滾動型具有用於'notifyDataSetChanged()'沒有這樣的方法;此方法屬於[BaseAdapter類](https://developer.android.com/reference/android/widget/BaseAdapter.html#notifyDataSetChanged()),並且通常與ListViews,GridViews或RecyclerViews相關聯。 –

+0

是的,我知道。我的意思是我使用notifyDataSetChange()來僅更新GridView,而同一活動中的scrollView也被重繪。 – toscanininini

+0

在適配器上調用該方法將導致GridView中的佈局傳遞,以便可以測量所有列表項並將其放置在佈局中。如果GridView的大小確切,佈局過程不應該繼續佈局層次結構。也許你已經提供了'wrap_content'作爲它的一個維度? –

回答

0

商店ScrollValue在滾動視圖的時候,只是用setSelectionMethod在你的GridView

gridview.setOnScrollListener(new OnScrollListener() { 

     @Override 
     public void onScrollStateChanged(AbsListView view, int scrollState) { 
     // TODO Auto-generated method stub 
      int count = gridview.getCount(); 
       if (scrollState == SCROLL_STATE_IDLE) { 
        if (gridview.getLastVisiblePosition() >= count 
          - 1) { 
         scrollPos = <positionOfList>; 
        } 
       } 
} 
}); 

這裏輸入你的最後一個位置insted的的「positionOfList」 而只是調用notifydatasetChanged()調用GridView控件之後。 setSelection(scrollPos)

希望這會幫助你!

+0

謝謝。但我只是想知道爲什麼scrollview被重繪。我認爲notifyDataSetChanged只刷新listview/gridview本身。 – toscanininini

+0

如果你的gridview在ScrollView中,那麼不要這樣做,gridview有它自己的滾動視圖,你不必把gridview放在gridview上 –

0

只需使用波紋管代碼類您更新顯示:

int index = myList.getFirstVisiblePosition(); 
    View v = myList.getChildAt(0); 
    int top = (v == null) ? 0 : v.getTop(); 

    myList.setAdapter(adapter); 
    adapter.notifyDataSetChanged(); 
    myList.setSelectionFromTop(index, top); 
+0

謝謝,但我的最小API級別是11,我發現setSelectionFromTop方法至少需要API 21。 – toscanininini