我有纵向和横向模式的不同布局。 layout\activity_main.xml
:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<FrameLayout android:id="@+id/container"
android:layout_height="match_parent"
android:layout_width="match_parent"/>
</RelativeLayout>
layout-large\activity_main.xml
:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<fragment
android:id="@+id/fragment1"
android:name="com.example.fragmentorientationchangetest.Fragment1"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1" />
<fragment
android:id="@+id/fragment2"
android:name="com.example.fragmentorientationchangetest.Fragment2"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1" />
</LinearLayout>
我的片段相同,fragment1.xml
和fragment2.xml
:
<RelativeLayout 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:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
>
<TextView
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Fragment 2" />
<EditText android:id="@+id/input"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="4dp"
android:layout_below="@+id/text"/>
</RelativeLayout>
我想要的是当我在片段中输入编辑文本中的某些文本并旋转屏幕时,编辑文本不会丢失其输入文本。
由于纵向和横向模式中的片段不是一个实例,因此我无法使用setRetaintInstance
或onSaveInstanceState
。如果不定义两个活动而不使用onConfigurationChanged
?
注意:不添加任何代码,每个片段都会保存其数据。因此,如果我在纵向模式下在fragment2中输入一些文本并旋转到横向并再次旋转到纵向模式,我会看到输入的文本。
答案 0 :(得分:0)
随着我的编码越来越多,我有时会忽略简单的想法,如:
SharedPreferences myText = getSharedPreferences("txt", 0);
SharedPreferences.Editor editor = settings.edit();
editor.putString("userText", "Your text that you want to save");
editor.commit();
并阅读:
SharedPreferences myText = context.getSharedPreferences("txt", 0);
String userInput = myText .getString("userText", "");
然后根据userInput
设置您的editText。