前面的文章已經介紹橫向ListView的基礎實現、快速滑動和事件響應實現;能夠說,經過前面兩篇文章已經實現了一個完整可用的橫向ListView控件,而這之後的文章將介紹的是整個控件的擴展功能,以知足平常開發過程當中的特殊需求java
本文將介紹列表頭/尾的添加功能實現以及整個視圖在沒有足夠item能夠鋪滿控件時,讓顯示內容劇中顯示。android
爲何要實現添加頭尾視圖,這個我我的也不是很清楚,畢竟在開發過程當中不多會有使用頭尾視圖的須要;不過爲了學習,還爲了之後也許可能有這方面的需求,因此仍是選擇了實現這個功能;對於內容劇中顯示功能,是由於在使用這個控件時恰好有這個需求。api
有一點值得注意:頭/尾視圖在設計和使用的概念上不是做爲列表中的item,若是這一點沒有弄清楚,那麼在閱讀源代碼時會較爲困難,其中八個概念性封裝的方法就尤其體現出這一點(八個方法具體見代碼)緩存
先上代碼:ide
package com.hss.os.horizontallistview.history_version; import android.content.Context; import android.database.DataSetObserver; import android.graphics.Rect; import android.os.Build; import android.support.annotation.RequiresApi; import android.util.AttributeSet; import android.util.Log; import android.view.GestureDetector; import android.view.MotionEvent; import android.view.View; import android.widget.AdapterView; import android.widget.ListAdapter; import android.widget.Scroller; import java.util.LinkedList; import java.util.Queue; /** * 添加頭/尾視圖及居中顯示 * Created by sxyx on 2017/8/8. */ public class HorizontalListView3 extends AdapterView<ListAdapter> { private Queue<View> cacheView = new LinkedList<>();//列表項緩存視圖 private ListAdapter adapter = null; private GestureDetector mGesture; private int firstItemIndex = 0;//顯示的第一個子項的下標 private int lastItemIndex = -1;//顯示的最後的一個子項的下標 private int scrollValue=0;//列表已經發生有效滾動的位移值 private int hasToScrollValue=0;//接下來列表發生滾動所要達到的位移值 private int maxScrollValue=Integer.MAX_VALUE;//列表發生滾動所能達到的最大位移值(這個由最後顯示的列表項決定) private int displayOffset=0;//列表顯示的偏移值(用於矯正列表顯示的全部子項的顯示位置) private Scroller mScroller; private int firstItemLeftEdge=0;//第一個子項的左邊界 private int lastItemRightEdge=0;//最後一個子項的右邊界 private View headView; private View footView; private boolean hasHeadView=false; private boolean hasFootView=false; private boolean canShowInMid=false; public HorizontalListView3(Context context) { super(context); init(context); } public HorizontalListView3(Context context, AttributeSet attrs) { super(context, attrs); init(context); } public HorizontalListView3(Context context, AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); init(context); } @RequiresApi(api = Build.VERSION_CODES.LOLLIPOP) public HorizontalListView3(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) { super(context, attrs, defStyleAttr, defStyleRes); init(context); } private void init(Context context){ mGesture = new GestureDetector(getContext(), mOnGesture); mScroller=new Scroller(context); } private void initParams(){ mScroller.forceFinished(true);//避免在滑動過程當中變換視圖內容時,出現列表沒法滾動的狀況 removeAllViewsInLayout(); if(adapter!=null&&lastItemIndex<adapter.getCount()) hasToScrollValue=scrollValue;//保持顯示位置不變 else hasToScrollValue=0;//滾動到列表頭 scrollValue=0;//列表已經發生有效滾動的位移值 firstItemIndex = 0;//顯示的第一個子項的下標 lastItemIndex = -1;//顯示的最後的一個子項的下標 maxScrollValue=Integer.MAX_VALUE;//列表發生滾動所能達到的最大位移值(這個由最後顯示的列表項決定) displayOffset=0;//列表顯示的偏移值(用於矯正列表顯示的全部子項的顯示位置) firstItemLeftEdge=0;//第一個子項的左邊界 lastItemRightEdge=0;//最後一個子項的右邊界 if(hasHeadView||hasFootView) { if (hasHeadView) { scrollValue = headView.getMeasuredWidth(); headView.layout(0, 0, 0, 0); setHeadView(headView); } if (hasFootView) { footView.layout(0, 0, 0, 0); setFootView(footView); } }else requestLayout(); } private DataSetObserver mDataObserver = new DataSetObserver() { @Override public void onChanged() { //執行Adapter數據改變時的邏輯 initParams(); } @Override public void onInvalidated() { //執行Adapter數據失效時的邏輯 initParams(); } }; @Override public ListAdapter getAdapter() { return adapter; } @Override public void setAdapter(ListAdapter adapter) { if(adapter!=null){ adapter.registerDataSetObserver(mDataObserver); } if(this.adapter!=null){ this.adapter.unregisterDataSetObserver(mDataObserver); } this.adapter=adapter; requestLayout(); } @Override public View getSelectedView() { return null; } @Override public void setSelection(int i) { } private void addAndMeasureChild(View child, int viewIndex) { LayoutParams params = child.getLayoutParams(); params = params==null ? new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.MATCH_PARENT):params; addViewInLayout(child, viewIndex, params, true); child.measure(MeasureSpec.makeMeasureSpec(getWidth(), MeasureSpec.UNSPECIFIED), MeasureSpec.makeMeasureSpec(getHeight(), MeasureSpec.UNSPECIFIED)); } @Override protected void onLayout(boolean changed, int left, int top, int right, int bottom) { super.onLayout(changed, left, top, right, bottom); Log.e("","============>>>>>left:"+left+" top:"+top+" right:"+right+" bottom:"+bottom); //須要先佈局列表項再根據餘下的空間佈局列表頭尾 //佈局列表項 /* 1.計算這一次總體滾動偏移量 2.根據偏移量提取須要緩存視圖 3.根據偏移量顯示新的列表項 4.根據總體偏移值整頓全部列表項位置 5.計算最大滾動位移值,記錄已經發生有效滾動的位移值 6.根據顯示的最終效果,判斷是否要居中顯示 */ int dx=calculateScrollValue(); removeNonVisibleItems(dx); showListItem(dx); adjustItems(); //佈局列表頭、尾 adjustHeadAndFootView(dx); calculateMaxScrollValue(); adjustShow(); //繼續滾動 if(!mScroller.isFinished()){ post(new Runnable(){ @Override public void run() { requestLayout(); } }); } } /** * 計算這一次總體滾動偏移量 * @return */ private int calculateScrollValue(){ int dx=0; if(mScroller.computeScrollOffset()){ hasToScrollValue = mScroller.getCurrX(); } if(hasToScrollValue<=0){ hasToScrollValue=0; mScroller.forceFinished(true); } if(hasToScrollValue >= maxScrollValue) { hasToScrollValue = maxScrollValue; mScroller.forceFinished(true); } dx=hasToScrollValue-scrollValue; scrollValue=hasToScrollValue; return -dx; } /** * 計算最大滾動值 */ private void calculateMaxScrollValue(){ if(getListItemCount()>0) { if(lastItemIndex==adapter.getCount()-1) {//已經顯示了最後一項 if(getChildAt(getChildCount() - 1).getRight()>=getShowEndEdge()) { maxScrollValue = scrollValue + getChildAt(getChildCount() - 1).getRight() - getShowEndEdge(); }else{ maxScrollValue=0; } } }else{ if(adapter!=null&&adapter.getCount()>0){ }else { if (getChildCount() > 0 && getChildAt(getChildCount() - 1).getRight() >= getShowEndEdge()) { maxScrollValue = scrollValue + getChildAt(getChildCount() - 1).getRight() - getShowEndEdge(); } else { maxScrollValue = 0; } } } } /** * 根據偏移量提取須要緩存視圖 * @param dx */ private void removeNonVisibleItems(int dx) { if(getListItemCount()>0) { //移除列表頭 View child = getChildAt(getStartItemIndex()); while (getListItemCount()>0&&child != null && child.getRight() + dx <= getShowStartEdge()) { displayOffset += child.getMeasuredWidth(); cacheView.offer(child); removeViewInLayout(child); firstItemIndex++; child = getChildAt(getStartItemIndex()); } //移除列表尾 child = getChildAt(getEndItemIndex()); while (getListItemCount()>0&&child != null && child.getLeft() + dx >= getShowEndEdge()) { cacheView.offer(child); removeViewInLayout(child); lastItemIndex--; child = getChildAt(getEndItemIndex()); } } } /** * 根據偏移量顯示新的列表項 * @param dx */ private void showListItem(int dx) { if(adapter==null)return; int firstItemEdge = getFirstItemLeftEdge()+dx; int lastItemEdge = getLastItemRightEdge()+dx; displayOffset+=dx;//計算偏移量 //顯示列表頭視圖 while(firstItemEdge > getShowStartEdge() && firstItemIndex-1 >= 0) { firstItemIndex--;//往前顯示一個列表項 View child = adapter.getView(firstItemIndex, cacheView.poll(), this); addAndMeasureChild(child, getStartItemIndex()); firstItemEdge -= child.getMeasuredWidth(); displayOffset -= child.getMeasuredWidth(); } //顯示列表未視圖 while(lastItemEdge < getShowEndEdge() && lastItemIndex+1 < adapter.getCount()) { lastItemIndex++;//日後顯示一個列表項 View child = adapter.getView(lastItemIndex, cacheView.poll(), this); addAndMeasureChild(child, getEndItemIndex()+1); lastItemEdge += child.getMeasuredWidth(); } } /** * 調整各個item的位置 */ private void adjustItems() { if(getListItemCount() > 0){ int left = displayOffset+getShowStartEdge(); int top = getPaddingTop(); int endIndex = getEndItemIndex(); int startIndex = getStartItemIndex(); int childWidth,childHeight; for(int i=startIndex;i<=endIndex;i++){ View child = getChildAt(i); childWidth = child.getMeasuredWidth(); childHeight = child.getMeasuredHeight(); child.layout(left, top, left + childWidth, top + childHeight); left += childWidth; } firstItemLeftEdge=getChildAt(getStartItemIndex()).getLeft(); lastItemRightEdge=getChildAt(getEndItemIndex()).getRight(); } } /** * 調整列表頭、尾 */ private void adjustHeadAndFootView(int dx){ if(hasHeadView){ int left,right; if(getListItemCount()>0){ right=firstItemLeftEdge; }else{ if(headView.getRight()>0) right=headView.getRight()+dx; else right=getShowStartEdge()+headView.getMeasuredWidth(); } left=right-headView.getMeasuredWidth(); headView.layout(left, getPaddingTop(), right, headView.getMeasuredHeight()+getPaddingTop()); } if(hasFootView){ int left,right; if(getListItemCount()>0){ left=getChildAt(getEndItemIndex()).getRight(); }else{ if(hasHeadView) left=headView.getRight(); else { if(footView.getLeft()==0&&dx==0){//第一次賦值 left=getShowStartEdge(); }else{ left=footView.getLeft()+dx; } } } right=left+footView.getMeasuredWidth(); footView.layout(left, getPaddingTop(), right, footView.getMeasuredHeight()+getPaddingTop()); } } private void adjustShow(){ if(isCanShowInMid()){//能夠居中顯示 int endEdge=getShowEndEdge(); boolean canAdjust=false; if(hasFootView){ if(footView.getRight()<endEdge) canAdjust=true; }else if(getListItemCount()>0){ if(getChildAt(getEndItemIndex()).getRight()<endEdge) canAdjust=true; }else if(hasHeadView){ if(headView.getRight()<endEdge) canAdjust=true; } if(canAdjust){ //居中顯示 int itemsWidth=getChildAt(getChildCount()-1).getRight()-getShowStartEdge(); int left=(getShowWidth()-itemsWidth)/2+getShowStartEdge(); int right; View child; for(int i=0;i<getChildCount();i++){ child= getChildAt(i); right=left+child.getMeasuredWidth(); child.layout(left,child.getTop(),right,child.getBottom()); left=right; } } } } //如下八個方法爲概念性封裝方法,有助於日後的擴展和維護 /** * 得到列表視圖中item View的總數 * @return */ private int getListItemCount(){ int itemCount=getChildCount(); if(hasHeadView)itemCount-=1; if(hasFootView)itemCount-=1; return itemCount; } /** * 得到列表視圖中第一個item View下標 * @return */ private int getStartItemIndex(){ if(hasHeadView) return 1; return 0; } /** * 得到列表視圖中最後一個item View下標 * @return */ private int getEndItemIndex(){ if(hasFootView) return getChildCount()-2; return getChildCount()-1; } /** * 得到列表視圖中第一個item View左邊界值 * @return */ private int getFirstItemLeftEdge(){ if(getListItemCount()>0) { return firstItemLeftEdge; }else{ if(hasHeadView) return headView.getRight(); else return 0; } } /** * 得到列表視圖中最後一個item View右邊界值 * @return */ private int getLastItemRightEdge(){ if(getListItemCount()>0) { return lastItemRightEdge; }else{ if(hasFootView) return footView.getLeft(); else return 0; } } /** * 取得視圖可見區域的左邊界 * @return */ private int getShowStartEdge(){ return getPaddingLeft(); } /** * 取得視圖可見區域的右邊界 * @return */ private int getShowEndEdge(){ return getWidth()-getPaddingRight(); } /** * 取得視圖可見區域的寬度 * @return */ private int getShowWidth(){ return getWidth()-getPaddingLeft()-getPaddingRight(); } public void setHeadView(View view){ if(view!=null) { int headRight=-1; int width=0; if (hasHeadView&&headView!=null) { headRight=headView.getRight(); width=headView.getWidth(); removeViewInLayout(headView); } hasHeadView = true; headView=view; addAndMeasureChild(headView, 0); if(getListItemCount()>0) {//有列表內容 if (headRight == -1) { //新增列表頭 if (firstItemIndex == 0) {//第一個顯示的是第一個列表項 //滾動整個列表,讓其顯示完整列表頭(讓列表往回滾) scrollValue = headView.getMeasuredWidth() + getShowStartEdge() - firstItemLeftEdge; hasToScrollValue=0; } else {//不是顯示第一個列表項 //不滾動列表項,增長曆史滾動值 hasToScrollValue += headView.getMeasuredWidth(); scrollValue = hasToScrollValue; } } else { //替換列表頭 hasToScrollValue += headView.getMeasuredWidth()-width; } } maxScrollValue=Integer.MAX_VALUE; requestLayout(); } } public void removeHeadView(){ if(hasHeadView&&headView!=null){ hasHeadView=false; int left=headView.getLeft(); int width=headView.getMeasuredWidth(); removeViewInLayout(headView); if(headView.getRight()>=getShowStartEdge()) {//列表頭有顯示 scrollValue = -(width+left-getShowStartEdge()); hasToScrollValue=0; }else{ scrollValue-=width; hasToScrollValue-=width; } requestLayout(); }else{ hasHeadView=false; } } public void setFootView(View view){ if(view!=null) { if (hasFootView&&footView!=null) { removeViewInLayout(footView); } hasFootView=true; footView=view; addAndMeasureChild(footView, -1); requestLayout(); } } public void removeFootView(){ if(hasFootView&&footView!=null){ hasFootView=false; int left=footView.getLeft(); removeViewInLayout(footView); if(left<getWidth()) { hasToScrollValue -= getWidth()-left-getShowStartEdge(); } requestLayout(); }else{ hasFootView=false; } } /** * 在onTouchEvent處理事件,讓子視圖優先消費事件 * @param event * @return */ @Override public boolean onTouchEvent(MotionEvent event) { return mGesture.onTouchEvent(event); } private GestureDetector.OnGestureListener mOnGesture = new GestureDetector.SimpleOnGestureListener() { @Override public boolean onDown(MotionEvent e) { mScroller.forceFinished(true);//點擊時中止滾動 return true; } @Override public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) { mScroller.fling(hasToScrollValue, 0, (int)-velocityX, 0, 0, maxScrollValue, 0, 0); requestLayout(); return true; } @Override public boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY) { synchronized(HorizontalListView3.this){ hasToScrollValue += (int)distanceX; } requestLayout(); return true; } @Override public boolean onSingleTapConfirmed(MotionEvent e) { for(int i=0;i<getChildCount();i++){ View child = getChildAt(i); if (isEventWithinView(e, child)) { if(hasHeadView&&i==0){ //點擊列表頭 }else if(hasFootView&&i==getChildCount()-1){ //點擊列表尾 }else { int position=firstItemIndex + i; if(hasHeadView) position--; if (getOnItemClickListener() != null) { getOnItemClickListener().onItemClick(HorizontalListView3.this, child, position, adapter.getItemId(position)); } if (getOnItemSelectedListener() != null) { getOnItemSelectedListener().onItemSelected(HorizontalListView3.this, child, position, adapter.getItemId(position)); } } break; } } return true; } @Override public void onLongPress(MotionEvent e) { int childCount = getChildCount(); for (int i = 0; i < childCount; i++) { View child = getChildAt(i); if (isEventWithinView(e, child)) { if(hasHeadView&&i==0){ //點擊列表頭 }else if(hasFootView&&i==getChildCount()-1){ //點擊列表尾 }else { int position=firstItemIndex + i; if(hasHeadView) position--; if (getOnItemLongClickListener() != null) { getOnItemLongClickListener().onItemLongClick(HorizontalListView3.this, child, position, adapter.getItemId(position)); } } break; } } } private boolean isEventWithinView(MotionEvent e, View child) { Rect viewRect = new Rect(); int[] childPosition = new int[2]; child.getLocationOnScreen(childPosition); int left = childPosition[0]; int right = left + child.getWidth(); int top = childPosition[1]; int bottom = top + child.getHeight(); viewRect.set(left, top, right, bottom); return viewRect.contains((int) e.getRawX(), (int) e.getRawY()); } }; public synchronized void scrollTo(int x) { mScroller.startScroll(hasToScrollValue, 0, x - hasToScrollValue, 0); requestLayout(); } public boolean isCanShowInMid() { return canShowInMid; } public void setCanShowInMid(boolean canShowInMid) { this.canShowInMid = canShowInMid; } }
這裏實現的頭尾視圖只提供單視圖模式,沒有提供像ListView同樣列表模式,也就是說,頭/尾視圖只能各自設置一個,而不能設置多個。佈局
有一點值得注意:頭/尾視圖在設計和使用的概念上不是做爲列表中的item,若是這一點沒有弄清楚,那麼在讀代碼時會更加困難,其中八個概念性封裝的方法就尤其體現出這一點post
在沒有須要實現頭/尾視圖的時候,在不少代碼段中用到0表示第一個item下標,也用到getPaddingLeft()這個方法的取值做爲可視區域的左邊界值;當須要加入頭/尾視圖時,這些值都須要作出些改變,於是須要引入八個概念性封裝的方法,以下降代碼之間的耦合度,使擴展功能後的代碼和擴展前的代碼有明顯分割線,這樣不只有利於加強代碼的可讀性,又有利於代碼的維護和擴展。學習
這樣的實現方式不只讓橫行ListView的基礎實現保持其原型,讓擴展的代碼徹底分離出來,並且對於之後的擴展更加有利,對於功能的剔除也方便不少而不容易出錯。(對於這八個方法的做用,在代碼裏已經有了相應的註解,這裏就再也不作討論)ui
在加入頭/尾視圖以前,這八個概念性封裝的方法實現以下:this
//如下八個方法爲概念性封裝方法,有助於日後的擴展和維護 /** * 得到列表視圖中item View的總數 * @return */ private int getListItemCount(){ int itemCount=getChildCount(); return itemCount; } /** * 得到列表視圖中第一個item View下標 * @return */ private int getStartItemIndex(){ return 0; } /** * 得到列表視圖中最後一個item View下標 * @return */ private int getEndItemIndex(){ return getChildCount()-1; } /** * 得到列表視圖中第一個item View左邊界值 * @return */ private int getFirstItemLeftEdge(){ if(getListItemCount()>0) { return firstItemLeftEdge; }else{ return 0; } } /** * 得到列表視圖中最後一個item View右邊界值 * @return */ private int getLastItemRightEdge(){ if(getListItemCount()>0) { return lastItemRightEdge; }else{ return 0; } } /** * 取得視圖可見區域的左邊界 * @return */ private int getShowStartEdge(){ return getPaddingLeft(); } /** * 取得視圖可見區域的右邊界 * @return */ private int getShowEndEdge(){ return getWidth()-getPaddingRight(); } /** * 取得視圖可見區域的寬度 * @return */ private int getShowWidth(){ return getWidth()-getPaddingLeft()-getPaddingRight(); }
添加了頭/尾視圖後,這八個概念性封裝的方法實現以下:
//如下八個方法爲概念性封裝方法,有助於日後的擴展和維護 /** * 得到列表視圖中item View的總數 * @return */ private int getListItemCount(){ int itemCount=getChildCount(); if(hasHeadView)itemCount-=1; if(hasFootView)itemCount-=1; return itemCount; } /** * 得到列表視圖中第一個item View下標 * @return */ private int getStartItemIndex(){ if(hasHeadView) return 1; return 0; } /** * 得到列表視圖中最後一個item View下標 * @return */ private int getEndItemIndex(){ if(hasFootView) return getChildCount()-2; return getChildCount()-1; } /** * 得到列表視圖中第一個item View左邊界值 * @return */ private int getFirstItemLeftEdge(){ if(getListItemCount()>0) { return firstItemLeftEdge; }else{ if(hasHeadView) return headView.getRight(); else return 0; } } /** * 得到列表視圖中最後一個item View右邊界值 * @return */ private int getLastItemRightEdge(){ if(getListItemCount()>0) { return lastItemRightEdge; }else{ if(hasFootView) return footView.getLeft(); else return 0; } } /** * 取得視圖可見區域的左邊界 * @return */ private int getShowStartEdge(){ return getPaddingLeft(); } /** * 取得視圖可見區域的右邊界 * @return */ private int getShowEndEdge(){ return getWidth()-getPaddingRight(); } /** * 取得視圖可見區域的寬度 * @return */ private int getShowWidth(){ return getWidth()-getPaddingLeft()-getPaddingRight(); }
實現添加頭/尾視圖功能的步驟以下:
1.實現getHeadView()、getFootView()、removeHeadView()、removeFootView()這四個方法
在實現這四個方法時會遇到須要調整整個列表顯示的狀況,這個時候整個列表的顯示調整要經過滾動操做進行調整(即調整scrollValue和hasToScrollValue的值,且調用requestLayout()方法從新佈局視圖),而不是直接操做left/top/right/bottom來調整,
2.實現頭/尾視圖佈局方法adjustHeadAndFootView(int dx);
頭視圖的顯示是以第一個顯示的item View的左邊界做爲基準,即以第一個顯示的itemView的左邊界做爲頭視圖顯示的右邊界(第一個itemView 的left值做爲headView的right值)。
同理,尾視圖的顯示是以最後一個item View的右邊界做爲基準(最後一個itemView 的right值做爲footView的left值)
頭尾視圖的顯示不考慮其是否可見,即不須要考慮頭尾視圖是否在橫向ListView的可見區域內。
3.選擇修改八個概念性封裝的方法,以知足需求
4.在initParams()方法中添加入頭/尾視圖的初始化操做
若是在initPatams方法中沒有對頭/尾視圖作出調整,那麼整個執行邏輯會出錯。
5.在onLayout(boolean changed, int left, int top, int right, int bottom)方法中添加頭/尾視圖的佈局操做。必須在adjustItems()和calculateMaxScrollValue()方法之間調用,以下代碼:
@Override protected void onLayout(boolean changed, int left, int top, int right, int bottom) { super.onLayout(changed, left, top, right, bottom); int dx=calculateScrollValue(); removeNonVisibleItems(dx); showListItem(dx); adjustItems(); //佈局列表頭、尾 adjustHeadAndFootView(dx); calculateMaxScrollValue(); adjustShow(); //繼續滾動 if(!mScroller.isFinished()){ post(new Runnable(){ @Override public void run() { requestLayout(); } }); } }
實現居中顯示的功能步驟以下:
1.添加居中顯示開關boolean canShowInMid及相應的設置和訪問方法
public boolean isCanShowInMid() { return canShowInMid; } public void setCanShowInMid(boolean canShowInMid) { this.canShowInMid = canShowInMid; }
2.實現adjustShow()方法
private void adjustShow(){ if(isCanShowInMid()){//能夠居中顯示 int endEdge=getShowEndEdge(); boolean canAdjust=false; if(hasFootView){ if(footView.getRight()<endEdge) canAdjust=true; }else if(getListItemCount()>0){ if(getChildAt(getEndItemIndex()).getRight()<endEdge) canAdjust=true; }else if(hasHeadView){ if(headView.getRight()<endEdge) canAdjust=true; } if(canAdjust){ //居中顯示 int itemsWidth=getChildAt(getChildCount()-1).getRight()-getShowStartEdge(); int left=(getShowWidth()-itemsWidth)/2+getShowStartEdge(); int right; View child; for(int i=0;i<getChildCount();i++){ child= getChildAt(i); right=left+child.getMeasuredWidth(); child.layout(left,child.getTop(),right,child.getBottom()); left=right; } } } }
3.在onLayout(boolean changed, int left, int top, int right, int bottom)方法中全部視圖佈局完成時調用