画面の回転中に進行状況バーが不確定な非同期タスクを使用することができました。非同期タスクは1回だけ開始され、プログレスバーは希望どおりに回転すると復元されます。
縦向きとレイアウトの向きに異なるレイアウトがあります。レイアウトには、ボタンとテキストビューが含まれます。レイアウトランドのテキストビューのサイズとテキストの色が異なります。そして、オリエンテーションは風景です。
問題は、asynctaskの実行中に画面を回転すると、onPostExecuteメソッドでテキストビューを更新できないことです。回転すると、layout-landファイルでアクティビティが再作成されます。しかし、なぜTextviewを更新できないのですか?
layout \ 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>
layout-land \ 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");
}
}