gpt4 book ai didi

android - 每 N 秒更新一次 TextView?

转载 作者:太空宇宙 更新时间:2023-11-03 11:26:56 24 4
gpt4 key购买 nike

我最近对此很困惑,到处都找不到答案。

在为 android 编程时,我想每 10 秒更新一次 TextView ,但我该怎么做呢?我已经看到一些示例使用“Run()”和“Update()”,但是当我尝试时这似乎没有帮助,有什么想法吗?

现在我有:

public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.slideshow);

CONST_TIME = (int) System.currentTimeMillis();

Resources res = getResources();
myString = res.getStringArray(R.array.myArray);
}

public void checkTime(View V){
TextView text = (TextView) findViewById(R.id.fadequote);
CUR_TIME = (int) System.currentTimeMillis();
text.setText(""+(int) (CUR_TIME-CONST_TIME));//Debugs how much time has gone by

if(CUR_TIME-CONST_TIME>10000){
getNextQuote(null); //A function that gets a random quote
CONST_TIME = CUR_TIME;
}
}

我想我真正想问的是如何让 checkTime() 不断地 self 重复直到 onPause() 被调用?

最佳答案

不要大惊小怪地使用后台线程然后 runOnUiThread(),而是使用 postDelayed(),在任何 View 上都可用,来安排一个可运行Runnable 可以更新您的 TextView,然后自行安排下一次传递。使用后台线程来观看时间流逝是一种浪费。

关于android - 每 N 秒更新一次 TextView?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4776514/

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