gpt4 book ai didi

java - 如何分离 Button Long Press Button press Up 和 Down 事件

转载 作者:行者123 更新时间:2023-11-30 01:40:42 27 4
gpt4 key购买 nike

我有一个点击功能,长按同一个按钮。实现了长按事件,但我需要分别找到按钮 UP_EVENT 和 DOWN_EVENTS。如何使用 OnLongClickListener

实现
 View.OnLongClickListener listener = new View.OnLongClickListener() {

@Override
public boolean onLongClick(View view) {

return true;
}

};

最佳答案

Implement a TouchListener within the onLongClickListener :

    View.OnLongClickListener listener = new View.OnLongClickListener() {

@Override
public boolean onLongClick(View view) {
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
return true; // if you want to handle the touch event
}
return false;
}
});
return true;
}

};

关于java - 如何分离 Button Long Press Button press Up 和 Down 事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34542198/

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