左右滑动屏幕切换源码追踪(2)

protected void onLayout(boolean changed, int left, int top, int right, int bottom) {           int childLeft = 0;           final int count = getChildCount();           for (int i = 0; i < count; i++) {               final View child = getChildAt(i);               if (child.getVisibility() != View.GONE) {                   final int childWidth = child.getMeasuredWidth();                   child.layout(childLeft, 0, childLeft + childWidth, child.getMeasuredHeight());                   childLeft += childWidth;               }           }           //ADW:updateWallpaperoffset            if(lwpSupport){               if(mWallpaperScroll)                   updateWallpaperOffset();               else                   centerWallpaperOffset();           }       }  

onLayout方法中,横向画出每一个子view,view的高与屏幕高一致,宽度为getChildCount()-1个屏幕宽度的view。

再看一下onInterceptTouchEvent()方法:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wyspjz.html