gpt4 book ai didi

android - 试图测量android中的触摸持续时间

转载 作者:行者123 更新时间:2023-11-30 01:51:02 25 4
gpt4 key购买 nike

有没有办法测量 android 中 ImmageButton 的触摸持续时间?我正在构建一个需要使用此数据的应用程序,但我发现的只是确保最短持续时间

最佳答案

你应该使用setOnTouchListener给你

button.setOnTouchListener(new OnTouchListener() {

@Override
public boolean onTouch(View v, MotionEvent event) {
if(event.getAction() == MotionEvent.ACTION_DOWN){
//start calculate your time here
startTime = System.currentTimeMillis();
}
if(event.getAction() == MotionEvent.ACTION_UP){
estimatedTime = System.currentTimeMillis() - startTime;
}
return true;
}
});

关于android - 试图测量android中的触摸持续时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33051495/

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