gpt4 book ai didi

android - 为多个按钮实现 onTouchListener() 的单一方法

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:07:17 26 4
gpt4 key购买 nike

我正在尝试查看是否有一种方法可以创建一个方法来为多个按钮实现触摸监听器,因为我有很多按钮几乎可以做同样的事情。他们所做的唯一区别是他们将通过我的 sendMessage() 方法发送的消息,以及需要按住按钮多长时间才能发送消息。如果有办法做到这一点,那可能是什么?而且,为什么这样的东西行不通?

//Within onCreate Method...
Button mButton = (Button) findViewbyId(R.id.three_sec_button);
mButton = addTouchTimer(mButton, 3, 3);

通话-

private Button addTouchTimer(Button button, final int sec, final int messageNum){
button.setOnTouchListener(new View.OnTouchListener() {
boolean longEnough = false;
long realTimeLeft = sec * 1000;
@Override
// This will make it so that a message is only sent if the button is held down for 3 seconds
// Otherwise it won't send. It is sent during the hold down process, releasing it returns a false
// value and no message is sent.
public boolean onTouch(View arg0, MotionEvent arg1) {
Log.d("Button", "Touchy Touchy!");
if(arg1.getAction() == MotionEvent.ACTION_DOWN){
buttonPressTime = new CountDownTimer(realTimeLeft, 1000){
@Override
public void onTick(long millisUntilDone){
realTimeLeft = millisUntilDone;
}

@Override
public void onFinish() {
long timeLeft = realTimeLeft;
long currTime = System.currentTimeMillis();
long realFinishTime = currTime + timeLeft;
while(currTime < realFinishTime){
currTime = System.currentTimeMillis();
}
longEnough = true;
sendEmergencyMessage(longEnough, messageNum);
}
}.start();
}
else if(arg1.getAction() == MotionEvent.ACTION_UP){
buttonPressTime.cancel();
sendMessage(longEnough, messageNum);
}
return longEnough;
}
});

return button;
}

似乎为了提高效率,必须有比为每个按钮实现单独的监听器更好的方法。请注意,sendMessage() 中有一个使用 bool 值的 Log 调用,我想看看它被传递时的设置。这是在释放按钮期间调用它的唯一原因。

最佳答案

是的,你是对的,有更好的方法。处理所有事情的单个 TouchListener,通过 id 确定它是哪个按钮。

void intialization(){
Button m1, m2, m3, m4;
... //do initialization stuff
m1.setId(1);
m2.setId(2);
m3.setId(3);
m4.setId(4);
MyTouchListener touchListener = new MyTouchListener();
m1.setOnTouchListener(touchListener);
m2.setOnTouchListener(touchListener);
m3.setOnTouchListener(touchListener);
m4.setOnTouchListener(touchListener);
}

public class MyTouchListener implements OnTouchListener {
@Override
public boolean onTouch(View v, MotionEvent event) {
switch(v.getId()){
case 1:
//do stuff for button 1
break;
case 2:
//do stuff for button 2
break;
case 3:
//do stuff for button 3
break;
case 4:
//do stuff for button 4
break;
}
return true;
}

}

这就是您要做的!在这种情况下,id 的数值方法非常有用。另一种方法是让您的 Activity 在您的 Activity 中实现 OnTouchListener,这样您的代码会更简单。

public class MyActivity extends Activity implements OnTouchListener {

void initialization(){
Button m1, m2, m3, m4;
... //do initialization stuff
m1.setId(1);
m2.setId(2);
m3.setId(3);
m4.setId(4);
m1.setOnTouchListener(this);
m2.setOnTouchListener(this);
m3.setOnTouchListener(this);
m4.setOnTouchListener(this);
}

@Override
public boolean onTouch(View v, MotionEvent event) {
switch(v.getId()){
case 1:
//do stuff for button 1
break;
case 2:
//do stuff for button 2
break;
case 3:
//do stuff for button 3
break;
case 4:
//do stuff for button 4
break;
}
return true;
}

}

注意:此方法也适用于 OnClickListener、OnCheckedChangeListener 或您将在 Android View 上设置的任何其他监听器。

关于android - 为多个按钮实现 onTouchListener() 的单一方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17864143/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com