if(action == MotionEvent.ACTION_UP){
//this.getScrollX()得到的是 偏移量
if(this.getScrollX() > (mMenuWidth / 2))
{
this.smoothScrollTo(mMenuWidth, 0);
}else{
this.smoothScrollTo(0, 0);
}
return true;
}
如果不写 return true ,放开手指,屏幕不会自动进行缩放,这是为什么
if(action == MotionEvent.ACTION_UP){
//this.getScrollX()得到的是 偏移量
if(this.getScrollX() > (mMenuWidth / 2))
{
this.smoothScrollTo(mMenuWidth, 0);
}else{
this.smoothScrollTo(0, 0);
}
return true;
}
如果不写 return true ,放开手指,屏幕不会自动进行缩放,这是为什么
2014-10-28
举报