在屏幕旋转期间,我设法使用了带有不确定进度条的 Asynctask。Asynctask 只启动一次,进度条在旋转时恢复,就像我想要的那样。
我有不同的纵向和布局方向布局。布局包括一个按钮和一个文本视图。layout-land中textview的大小和文本颜色不同。方向是风景。
问题是当我在 asynctask 运行时旋转屏幕时,它无法更新 onPostExecute 方法中的文本视图。当我旋转时,它会使用 layout-land 文件重新创建活动。但是为什么我不能更新我的 Textview?
布局\activity_main.xml:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<Button
android:text="Start"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="startClicked"
/>
<TextView
android:id="@+id/hello"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world"
tools:context=".MainActivity" />
</LinearLayout>
布局土地\activity_main.xml:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<Button
android:text="Start"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="startClicked"
/>
<TextView
android:textSize="36dp"
android:textColor="#ff0000"
android:id="@+id/hello"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world"
tools:context=".MainActivity" />
</LinearLayout>
MainActivity.java:
package com.example.asynctaskconfig;
import android.app.Activity;
import android.app.ProgressDialog;
import android.os.AsyncTask;
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;
public class MainActivity extends Activity {
static String data;
static ProgressDialog pd;
MyAsyncTask task;
TextView tv;
@Override
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
setContentView(R.layout.activity_main);
tv = (TextView) findViewById(R.id.hello);
if (getLastNonConfigurationInstance() != null) {
task = (MyAsyncTask) getLastNonConfigurationInstance();
if (task != null) {
if (!(task.getStatus().equals(AsyncTask.Status.FINISHED))) {
showProgressDialog();
}
}
}
}
@Override
public Object onRetainNonConfigurationInstance() {
if (pd != null)
pd.dismiss();
if (task != null)
return (task);
return super.onRetainNonConfigurationInstance();
}
private void showProgressDialog() {
if (pd == null || !pd.isShowing()) {
pd = new ProgressDialog(MainActivity.this);
pd.setIndeterminate(true);
pd.setTitle("DOING..");
pd.show();
}
}
private void dismissProgressDialog() {
if (pd != null && pd.isShowing())
pd.dismiss();
}
public class MyAsyncTask extends AsyncTask<String, Void, Boolean> {
@Override
protected void onPreExecute() {
showProgressDialog();
}
@Override
protected Boolean doInBackground(String... args) {
try {
Thread.sleep(5000);
data = "result from ws";
} catch (Exception e) {
return true;
}
return true;
}
protected void onPostExecute(Boolean result) {
if (result) {
dismissProgressDialog();
updateUI();
}
}
}
private void updateUI() {
tv.setText(data == null ? "null" : data);
}
public void startClicked(View target) {
task = new MyAsyncTask();
task.execute("start");
}
}