gpt4 book ai didi

android - 在android中删除postDelayed

转载 作者:行者123 更新时间:2023-11-29 21:13:02 25 4
gpt4 key购买 nike

我正在使用 postDelayedTextView 在一段时间后隐藏它。现在,如果用户点击按钮,我想删除 postDelayed

我的代码如下:

tvRQPoint.setText("+100");
tvRQPoint.postDelayed(new Runnable() {
public void run() {
tvRQPoint.setText("");
}
}, 10000);

如何做到这一点?

最佳答案

在下面的单独位置创建您的线程...

private Runnable mTimerExecutor = new Runnable() {

@Override
public void run() {
tvRQPoint.setText("");
}
};

然后调用如下执行....

tvRQPoint.postDelayed(mTimerExecutor, 10000);

当你想取消postDelay的执行时,按如下方式取消...

tvRQPoint.removeCallbacks(mTimerExecutor);

关于android - 在android中删除postDelayed,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22197389/

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