gpt4 book ai didi

Android:循环更改textview

转载 作者:太空狗 更新时间:2023-10-29 15:09:34 25 4
gpt4 key购买 nike

我的 Activity 中有一些 TextView ,我有一个 do while 循环Loop 的任务是更改一些 TextView ,但它没有

在 eclipse 中没有出现错误 - toast 运行所有信息

我试过

do{

runOnUiThread(new Runnable()
{
public void run()
{
Random A0x = new Random();
int A0 = A0x.nextInt(15);
TextView TW_A0 = (TextView) findViewById(R.id.A0);
TW_A0.setText(Ans0[A0]);



}
});

或者我试过

TextView TW_UZ = (TextView) findViewById(R.id.UZ);
TW_UZ.setText(S+":"+M);

有什么帮助吗?

最佳答案

do{

runOnUiThread(new Runnable()
{
public void run()
{
Random A0x = new Random();
int A0 = A0x.nextInt(15);
TextView TW_A0 = (TextView) findViewById(R.id.A0);
TW_A0.setText(Ans0[A0]);

TW_A0.invalidate() // Tell text view to redraw its content



}
});

关于Android:循环更改textview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18111897/

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