Androidアプリケーションのライフサイクルについて学ぶためにAndroid Studioでサンプルアプリケーションを作成しました。オリエンテーションの変更によってアクティビティが完全に再開されることがわかります(つまり、OnCreateメソッドが再び呼び出されます)。 私が知る限り、向きを変えるとコンテキストが破壊され、デバイスの回転後に空白のテキストが表示されるはずです。しかし、何らかの形で、onSaveInstanceStateメソッドとonRestoreInstanceStateメソッドをオーバーライドせずに、コンテキストを保存しています。EditTextはデバイス回転後の値を自動的に保存しました
私は断片を持っていません。 Androidスタジオで提供されている基本的なテンプレートで、オーバーライドされたライフサイクルメソッドはほとんどありません。 ここに私のMainActivityクラスです:
package com.example.android.a2_screen_orientation_change;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
public class MainActivity extends AppCompatActivity {
private static final String TAG = MainActivity.class.getSimpleName();
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@Override
protected void onStart() {
super.onStart();
Log.i(TAG, "in method onStart");
}
@Override
protected void onResume() {
super.onResume();
Log.i(TAG, "in method onResume");
}
@Override
protected void onRestart() {
super.onRestart();
Log.i(TAG, "in method onRestart");
}
@Override
protected void onPause() {
super.onPause();
Log.i(TAG, "in method onPause");
}
@Override
protected void onStop() {
super.onStop();
Log.i(TAG, "in method onStop");
}
@Override
protected void onDestroy() {
super.onDestroy();
Log.i(TAG, "in method onDestroy");
}
}
レイアウト:
<?xml version="1.0" encoding="utf-8"?>
<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="com.example.android.a2_screen_orientation_change.MainActivity">
<EditText
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
AbdroidManifest:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.android.a2_screen_orientation_change">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
を参照してください?あなたの質問にそのような状態を親切に記載してください。 –
待ち、スクリーンショットを追加します –
'EditText'は保存された状態バンドルのテキストを自動的に保存/復元します。あなたはそれが起こるために何かをする必要はありません。 https://developer.android.com/reference/android/widget/TextView.html#setFreezesText(boolean)(「icicle」は保存された状態のバンドルの古い用語です) –