视频里有个bug,就是滑出来后,content的后面会出现空白。解决办法是menu的背景不要设置在menu的layout里,而是设在horizontalScrollView中
2016-06-01
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";