我在Android Studio中創建了一個示例應用程序,以瞭解Android應用程序的生命週期。我知道方向改變完全重新開始活動(即再次調用OnCreate方法)。 據我所知,方向改變應該已經破壞了上下文,並在設備旋轉後顯示一個空白文本。但不知怎的,沒有重寫onSaveInstanceState和onRestoreInstanceState方法,它保存了上下文。EditText自動保存設備旋轉後的值
我沒有任何碎片。它只是Android Studio提供的基本模板,幾乎沒有重載的生命週期方法。 這裏是我的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's自動保存/恢復保存狀態包中的文本。你不需要做任何事情就可以發生。 https://developer.android.com/reference/android/widget/TextView.html#setFreezesText(boolean)(注意「冰柱」是保存狀態包的舊術語。) –