我有一个imageButton我想播放音乐时,长按我的按钮后,我从按钮上移开手,然后它会播放音乐,直到我按下另一个按钮,停止它,
答案 0 :(得分:0)
您可以使用onTouchListener
来实现此目的:
view.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
switch(event.getAction()) {
case MotionEvent.ACTION_DOWN:
// PRESSED
return true; // if you want to handle the touch event
case MotionEvent.ACTION_UP:
// RELEASED : Play the music here
return true; // if you want to handle the touch event
}
return false;
}
});