我想为两个按钮实现 OnTouchEvent 并同时获取 MotionEvent.ACTION_MOVE 函数。
我实现了 onTouchEvent 但不起作用
left = (Button)findViewById(R.id.button1);
right = (Button)findViewById(R.id.button2);
left.setOnTouchListener(this);
right.setOnTouchListener(this);
@Override
public boolean onTouch(View v, MotionEvent event) {
// TODO Auto-generated method stub
if (event.getAction() == MotionEvent.ACTION_DOWN) {
if(v.getId()==R.id.button1){
Log.i("left", "moved!");
}
if(v.getId()==R.id.button2){
Log.i("right", "move!");
}
}
return false;
}
在 AndroidManifest.xml 中
<uses-feature android:name="android.hardware.touchscreen.multitouch"
android:required="true" />
请帮我解决这个问题。