【发布时间】:2012-03-22 15:05:49
【问题描述】:
我正在尝试创建自定义图库以禁用滚动。我从中得到以下信息:how to disable gallery view scrolling
public class MyGallery extends Gallery{
public MyGallery(Context context, AttributeSet attrs) {
super(context, attrs);
}
@Override
public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY){
if (isSelected())
return true;
else return super.onFling(e1, e2, velocityX, velocityY);
}
}
似乎没有工作。我做错了什么?
【问题讨论】: