gpt4 book ai didi

android - 安卓中的定时器

转载 作者:行者123 更新时间:2023-11-30 04:17:54 24 4
gpt4 key购买 nike

我是 android 的初学者。现在我正在开发一个简单的应用程序。我想在应用程序中创建一个计时器。我希望它从 10 倒计时到 0(用户可以看到),当它为 0 时,它应该做 smth。它应该在调用 onTouch 事件时开始倒计时。我试过这种方法,但它不起作用。有人可以帮忙吗?

这是我的代码:

final MyCounter timer = new MyCounter(10000,1000);

public class MyCounter extends CountDownTimer{

public MyCounter(long millisInFuture, long countDownInterval) {
super(millisInFuture, countDownInterval);
}

@Override
public void onFinish() {
System.out.println("Timer Completed.");
time.setText("Timer Completed.");
}

@Override
public void onTick(long millisUntilFinished) {
time.setText((millisUntilFinished/1000)+"");
System.out.println("Timer : " + (millisUntilFinished/1000));
}
}
public boolean onTouchEvent(MotionEvent event) {
if(event.getAction()==MotionEvent.ACTION_DOWN){
timer.start();
}
return false;

最佳答案

定时器代码看起来是正确的。让我检查一些假设:1)“时间”是一个TextView2) 您实际上将 onTouchEvent 挂接到某个东西上。

在 onTouchEvent 中设置一个断点并验证它是否被调用。此外,查看 Log 类和 LogCat 以验证是否调用了方法。

关于android - 安卓中的定时器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9709867/

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