case MotionEvent.ACTION_UP:int ScrollX=getScrollX();if(!isShow&&ScrollX <= mMenuWidth*4/5){this.smoothScrollTo(0,0);isShow = true;}else if(ScrollX>= mMenuWidth*1/5){this.smoothScrollTo(mMenuWidth,0);isShow=false;}else{this.smoothScrollTo(0,0);isShow=true;}return true;}return super.onTouchEvent(ev);
2016-05-24
在AS中,包名会自动引入,应该使用:xmlns:diy="http://schemas.android.com/apk/res-auto";
最新回答 / 追忆梦
<...图片...><...图片...>我是通过在主类里面调用侧滑方法的,我写了好几个碎片,但都是在这个主类里包裹起来,所以只要将主界面实现侧滑就可以了,不要单独去每个碎片类去单独设置,那样我也不会设置,建议你去主函数里设置一下
2016-05-15