gpt4 book ai didi

java - 我如何使用 TextView 修复 AsyncTask 错误

转载 作者:行者123 更新时间:2023-12-02 01:10:47 25 4
gpt4 key购买 nike

我想在 TextView 中显示从 1 到 100 的计时器,但这会引发异常。我的应用程序抛出 RuntimeException,如下所示:

预先感谢您的帮助。

java.lang.RuntimeException: An error occurred while executing doInBackground()

我的 MainActivity 类抛出 RuntimeException。

public class MainActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
TextView txt = findViewById(R.id.txt);
Button button1 = findViewById(R.id.bt1);
Button button2 = findViewById(R.id.bt2);
button1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
new QQ().execute();
}
});
}


public void onProgressUpdate(int i) {
TextView txt = findViewById(R.id.txt);
Button button1 = findViewById(R.id.bt1);
Button button2 = findViewById(R.id.bt2);
txt.setText(i);
}

private class QQ extends AsyncTask<Integer, Integer, Integer> {

@Override
protected void onPreExecute() {
super.onPreExecute();
}

protected Integer doInBackground(Integer... args) {
for (int i = 0; i < 1000000; i++) {

try {
Thread.sleep(1000); ///задержка
} catch (InterruptedException e) {
e.printStackTrace();
}
publishProgress(i);
return null;
}
return null;
}

private void publishProgress(int i) {
publishProgressq(i);
}

protected void onPostExecute(int i) {

}
}

private void publishProgressq(int i) {
onProgressUpdate(i);
}
}

我的 xml 布局类

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#bbbbbb"
android:orientation="vertical">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#bbbbbb"
android:gravity="top"
android:orientation="horizontal">

<TextView
android:id="@+id/txt"
android:layout_width="151dp"
android:layout_height="110dp"
android:textSize="45dp"
android:text="0">
</TextView>
<Button

android:id="@+id/bt1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="onClick"
android:text="START" />

<Button
android:id="@+id/bt2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="onClick"
android:text="STOP" />
</LinearLayout>
</LinearLayout>

最佳答案

您可以按如下方式更改代码:

public void onProgressUpdate(int i) {
runOnUiThread(new Runnable() {
@Override
public void run() {
TextView txt = findViewById(R.id.txt);
Button button1 = findViewById(R.id.bt1);
Button button2 = findViewById(R.id.bt2);
txt.setText(i);
}
});
}

它将在主线程上运行。

关于java - 我如何使用 TextView 修复 AsyncTask 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59435503/

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