をdestoyed&作成したばかりにも活性を保持して取得:なぜUI状態がUI状態が再び作成&をdestoyed取得しても活性を保持して取得なぜ再び
私の活動はのEditTextを持っており、私はそれにいくつかのテキストを書く場合など。 ABCと私はそれをonDestroyを呼び出すとonCreate()ので、Edittext 空である必要がありますが、まだ古いテキストを持っているそれを回転させる。
My活動:オリエンテーション変動に関する
public class MainActivity extends ActionBarActivity {
protected void onCreate(Bundle savedInstanceState) {
debugLog("(++) Create called");
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@Override
protected void onResume() {
debugLog("(++) onResume called");
super.onResume();
}
@Override
protected void onPause() {
debugLog("(++) onPause called");
super.onPause();
}
@Override
protected void onDestroy() {
debugLog("(++) onDestroy called");
super.onDestroy();
}
private void debugLog(String str) {
Log.d("SAMPLE APP",str);
}
}
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"
tools:context="${relativePackage}.${activityClass}"
android:orientation="vertical"
android:padding="15dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Name: "
android:singleLine="true"
android:textSize="16sp"
android:textColor="#000000" />
<EditText
android:id="@+id/et_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hobbies:"
android:singleLine="true"
android:textSize="16sp"
android:textColor="#000000"
android:layout_marginTop="10dp"/>
<CheckBox
android:id="@+id/checkBox1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:text="Table Tennis"
android:layout_marginTop="10dp"/>
</LinearLayout>
Logcat:
(++) onDestroy called
(++) onPause called
(++) onCreate called
(++) onResume called
これで、UIの状態を失う心配はありません。例えば、edittextやcheckboxの状態のテキストや、onPauseに保存する必要はありません。 –
これは、アンドロイドシステムがアクティビティを再作成していれば復元されますandroid:id属性を指定しました。しかし、それを自分で終わらせたり、他の活動に行くなら、そのデータを保存しなければなりません。 – abhishesh