レベル選択画面用に「スナップ先」の HorizontalScrollView を作成しています。なぜ機能しないのか理解できないコードがあります(ScrollViewはスナップせず、通常のScrollViewとして動作します)。オーバーライドが必要なスクロール ビューの基になるメソッドがある可能性がありますが、それを見つけることができないようです。これまでの私のコードは次のとおりです。
public class SnapToScrollView extends HorizontalScrollView implements
OnTouchListener {
//Marks the point where touch starts
float pointDown;
//Marks the position of the ScrollView when touch first occurs, used to snap
float startX;
public SnapToScrollView(Context context) {
super(context);
setSmoothScrollingEnabled(true);
}
public SnapToScrollView(Context context, AttributeSet attrs) {
super(context, attrs);
setSmoothScrollingEnabled(true);
}
public SnapToScrollView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
setSmoothScrollingEnabled(true);
}
@Override
public boolean onTouch(View v, MotionEvent event) {
//If motion is stopped, then snap to nearest
if (event.getAction() == MotionEvent.ACTION_UP) {
//determine if we have moved far enough from original touch
if (Math.abs(pointDown - event.getX()) > 640) {
//Move backwards or forwards
int c = (int) ((pointDown - event.getX()) / Math.abs(pointDown
- event.getX()));
smoothScrollTo((int) (startX + c * 640), 0);
} //else scroll to where we started
else {
smoothScrollTo((int) startX, 0);
}
} // when first touch happens, record coordinates
else if (event.getAction() == MotionEvent.ACTION_DOWN) {
startX = getScrollX();
pointDown = event.getX();
} // If it is not first or last touch, then scroll
else {
smoothScrollTo((int) (startX + event.getX()), 0);
}
return true;
}
}