1、原理html
轉自:http://www.cnblogs.com/maoyu417/p/3740209.htmljava
轉載 http://www.67tgb.com/?p=624android
最近項目結束,搞了一次代碼分享。其中一位同窗分享了一下本身在解決問題過程當中的一些心得體會,感受受益不淺。整理出來,分享給你們。網絡
建議使用本身編譯的android os和虛擬機,這樣就能夠調試android系統中的任何組件。簡單說來,深刻android源碼,去尋找解決問題的答案。這事兒提及來簡單,實際作起來仍是有些難度的。我也曾經嘗試着去看過,沒看一下子就暈了。app
因此仍是有針對性的去看源碼,效率會高一些。eclipse
廢話很少說,先看第一個示例。 異步
相信不少作過Viewpager的同窗確定遇到過這個問題,這個是bug仍是android就是如此設計的,咱們不作討論。總之,它確實影響咱們功能的實現了。ide
可能很多同窗選擇爲Viewpager從新設置一遍適配器adapter,達到刷新的目的。可是這種方法在大多數狀況下,是有問題的。this
爲何調用數據更新的方法,Viewpager卻沒有更新呢,咱們跟進該方法的源代碼看一下。spa
首先查看適配器調用的super.notifyDataSetChanged(),該方法調到抽象基類PagerAdapter.notifyDataSetChanged()中:
/**
* This method should be called by the application if the data backing this adapter has changed
* and associated views should update.
*/
public void notifyDataSetChanged() {
mObservable.notifyChanged();
}
註釋裏說到,當附加在適配器上的數據發生變化時,應該調用該方法刷新數據。該方法調用了一個mObservable .notifyChanged();
咱們繼續跟進這個方法,進入DataSetObservable類中,發現這樣一段代碼:
/**
* Invokes {@link DataSetObserver#onChanged} on each observer.
* Called when the contents of the data set have changed. The recipient
* will obtain the new contents the next time it queries the data set.
*/
public void notifyChanged() {
synchronized(mObservers ) {
// since onChanged() is implemented by the app, it could do anything, including
// removing itself from {@link mObservers} - and that could cause problems if
// an iterator is used on the ArrayList {@link mObservers}.
// to avoid such problems, just march thru the list in the reverse order.
for (int i = mObservers .size() - 1; i >= 0; i--) {
mObservers.get(i).onChanged();
}
}
}
這都不是重點,重點咱們來看這個mObservers的類型是一個抽象類DataSetObserver,裏面只有兩個未實現的方法,都有誰使用了這個抽象類呢,快捷鍵 ctrl + alt + H ,在衆多的調用者當中,咱們發現了Viewpager的身影
進入viewpager,咱們終於找到了viewpager中控制數據變動的重點方法dataSetChanged ,這個方法以下:
void dataSetChanged () {
// This method only gets called if our observer is attached, so mAdapter is non-null.
boolean needPopulate = mItems .size() < mOffscreenPageLimit * 2 + 1 &&
mItems.size() < mAdapter.getCount();
int newCurrItem = mCurItem ;
boolean isUpdating = false;
for (int i = 0; i < mItems.size(); i++) {
final ItemInfo ii = mItems .get(i);
final int newPos = mAdapter.getItemPosition(ii.object );
if (newPos == PagerAdapter.POSITION_UNCHANGED ) {
continue;
}
if (newPos == PagerAdapter.POSITION_NONE) {
mItems.remove(i);
i--;
if (!isUpdating) {
mAdapter.startUpdate( this);
isUpdating = true;
}
mAdapter.destroyItem( this, ii.position , ii.object);
needPopulate = true;
if (mCurItem == ii.position ) {
// Keep the current item in the valid range
newCurrItem = Math. max(0, Math.min(mCurItem, mAdapter.getCount() - 1));
needPopulate = true;
}
continue;
}
if (ii.position != newPos) {
if (ii.position == mCurItem ) {
// Our current item changed position. Follow it.
newCurrItem = newPos;
}
ii. position = newPos;
needPopulate = true;
}
}
if (isUpdating) {
mAdapter.finishUpdate( this);
}
Collections. sort(mItems, COMPARATOR);
if (needPopulate) {
// Reset our known page widths; populate will recompute them.
final int childCount = getChildCount();
for (int i = 0; i < childCount; i++) {
final View child = getChildAt(i);
final LayoutParams lp = (LayoutParams) child.getLayoutParams();
if (!lp.isDecor ) {
lp. widthFactor = 0.f;
}
}
setCurrentItemInternal(newCurrItem, false, true);
requestLayout();
}
}
重點看這樣一行代碼:
final int newPos = mAdapter.getItemPosition(ii.object );
if (newPos == PagerAdapter.POSITION_UNCHANGED ) {
continue ;
}
官方對getItemPosition()的解釋是:
Called when the host view is attempting to determine if an item’s position has changed. Returns POSITION_UNCHANGED if the position of the given item has not changed orPOSITION_NONE if the item is no longer present in the adapter.
The default implementation assumes that items will never change position and always returns POSITION_UNCHANGED.
意思是若是item的位置若是沒有發生變化,則返回POSITION_UNCHANGED。若是返回了POSITION_NONE,表示該位置的item已經不存在了。默認的實現是假設item的位置永遠不會發生變化,而返回POSITION_UNCHANGED
因此咱們能夠嘗試着修改適配器的寫法,覆蓋getItemPosition()方法,當調用notifyDataSetChanged時,讓getItemPosition方法人爲的返回POSITION_NONE,從而達到強迫viewpager重繪全部item的目的。
具體代碼以下:
class SearchAdapter extends PagerAdapter {
private int mChildCount = 0;
@Override
public void notifyDataSetChanged() {
mChildCount = getCount();
super.notifyDataSetChanged();
}
@Override
public int getItemPosition(Object object) {
if ( mChildCount > 0) {
mChildCount --;
return POSITION_NONE;
}
return super.getItemPosition(object);
}
}
2、解決辦法
轉自:http://www.aiuxian.com/article/p-2786024.html
Google在Android 3.0SDK中推出的ViewPager控件很大程度上知足了開發者開發頁面左右移動切換的功能,使用很是方便。可是使用中發現,在刪除或者修改數據的時候,PagerAdapter沒法像BaseAdapter那樣僅經過notifyDataSetChanged方法通知刷新View。
最基本的方法:
針對於child view比較簡單的狀況(例如僅有TextView、ImageView等,沒有ListView等展現數據的狀況),能夠在本身的Adapter中加入代碼:
這樣既可達到通常狀況下要求的效果。
存在的問題:
這不是PagerAdapter中的Bug,一般狀況下,調用notifyDataSetChanged方法會讓ViewPager經過Adapter的getItemPosition方法查詢一遍全部child view,這種狀況下,全部child view位置均爲POSITION_NONE,表示全部的child view都不存在,ViewPager會調用destroyItem方法銷燬,而且從新生成,加大系統開銷,並在一些複雜狀況下致使邏輯問題。特別是對於只是但願更新child view內容的時候,形成了徹底沒必要要的開銷。
更有效地方法:
更爲靠譜的方法是因地制宜,根據本身的需求來實現notifyDataSetChanged的功能,好比,在僅須要對某個View內容進行更新時,在instantiateItem()時,用View.setTag方法加入標誌,在須要更新信息時,經過findViewWithTag的方法找到對應的View進行更新便可。
使用ViewPager作滑動切換圖片的效果時,若是圖片是從網絡下載的,那麼再子線程中下載完圖片時咱們會使用handler通知UI線程,而後UI線程就能夠調用mViewPager.getAdapter().notifyDataSetChanged()進行頁面的刷新,可是viewpager不一樣於listview,你會發現單純的調用notifyDataSetChanged()並不能刷新頁面。先說說Viewpager的刷新過程:在每次調用notifyDataSetChanged()時,都會激活getItemPosition(Object object)方法,該方法會遍歷viewpager的全部item(據我debug的結果,只有當前頁和其左右加起來共3頁被遍歷了,待肯定),爲每一個item返回一個狀態值(POSITION_NONE/POSITION_UNCHANGED),若是是none,那麼該item會被destroyItem(ViewGroup container, int position, Object object)方法remove掉,而後從新加載,若是是unchanged,就不會從新加載,默認是unchanged,因此我國咱們不重寫getItemPosition(Object object),就沒法看到刷新效果。解決方法有兩種:
第一種網上比較容易查找到:重寫PagerAdapter的getItemPosition(Object object)方法,使其返回POSITION_NONE
這種方法的弊端你們都很容易看出來,我不須要刷新的項目也被從新加載了,浪費系統資源;
第二種更合理,固然相對前一種要再多作點事:思路是在instantiateItem時給每一個view加上tag,而後在須要刷新頁面時經過View.getTag()來判斷是不是咱們想要刷新的頁面,只給當前頁面返回POSITION_NONE。
關鍵的currentPageIdx則須要在Activity中獲取,若是你的Adapter是Activity的內部類,那麼只要把index寫成全局變量就能夠在adapter中使用了,若是是單獨的兩個類,那麼你就本身提供一個接口,將index傳給Adapter即是。
PS:個人項目中還加入了圖片下載進度條的功能,當我用第二種方法時,在一些比較極端的狀況下會有一點問題,假設全部圖片都須要從網上下載,在極快速滑動頁面時,發現偶爾會出現異步下載到的圖片並無被刷新顯示,在滑過幾頁從新回到該頁時圖片才被刷新了,這裏涉及到的關鍵問題是【ViewPager的預加載機制+圖片異步下載+getItemPosition中對Tag的判斷】,我認爲是這幾種機制結合後再快速切換頁面時形成的問題,因爲項目工期的限制,沒有去探索更完美的解決方法,反正圖片也不是不少,我就採用了第一種方法來作,能夠完美的實現個人功能。