我想为两个按钮实现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" />
请帮我解决这个问题。
答案 0 :(得分:2)
http://www.passsy.de/activity_with_multitouch_for_buttons/可以帮助你,你使用的是什么Android版本?
答案 1 :(得分:0)
试试这个:
if (event.getAction() == MotionEvent.ACTION_DOWN) {
if(v==left){
Log.i("left", "moved!");
}
if(v == right){
Log.i("right", "move!");
}
}
你应该让左右按钮成为班级成员。
编辑:抱歉可能会产生同样的效果。