我没有将configChanges属性用于清单中的活动,因为我需要为横向模式显示不同的布局。并在onSaveInstanceState()方法中保存少量原始数据值并返回onCreate()的Bundle。 以下是我的问题:
答案 0 :(得分:1)
您应该首先在清单文件中添加它(请注意<activity android:name=".MyActivity"
android:configChanges="orientation"
android:label="@string/app_name">
):
onSaveInstanceState()
然后覆盖这两种方法,并使用onRestoreInstanceState()
,{{1}}中的数据执行您想要的操作。