拖动按钮 - android?

时间:2014-02-01 21:33:28

标签: android multi-touch ontouchlistener

我有几个按钮,我想按下其中一个按钮并拖动另一个按钮。你能告诉我应该使用哪个MotionEvent或其他功能吗?我正在使用onTouchListener。

有一个图像,你可以看到我想要做的事情(第一个按钮上的第一个ACTION_DOWN,然后拖动仍然按下屏幕的第二个 - 第七个按钮),然后按下每个白色按钮:![在此处输入图像描述] [1 ]

http://i.stack.imgur.com/QNfvT.png

下面是我的onTouch按钮代码:

button1 = (Button) findViewById(R.id.button1); button1.setOnTouchListener(new OnTouchListener() { @Override public boolean onTouch(View v, MotionEvent event) { switch (event.getAction()) { case MotionEvent.ACTION_DOWN: soundIDs[0] = sound.play(R.raw.sample1); button1.setBackgroundResource(R.drawable.white_clicked); break; case MotionEvent.ACTION_UP: case MotionEvent.ACTION_CANCEL: sound.stop(soundIDs[0]); button1.setBackgroundResource(R.drawable.white); break; } return false; } });

0 个答案:

没有答案