我有一个包含images的列表。我为每个打开弹出窗口的图像放了一个方法
(我的意思是我使用android:theme="@android:style/Theme.Dialog" in manifest.xml
)当我点击我的图片时,我的新活动就会打开。现在evething工作正常。
我的第一项活动:我使用此:setRequestedOrientation (ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
在我的弹出式活动中:我使用此:setRequestedOrientation (ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
当我点击图片并打开弹出窗口时,是的,屏幕旋转并变为 lanscape ,当我返回按钮时,我的屏幕再次旋转,但问题是:当我回来时我的主要活动,当再次漫画到画像时,列表又重新加载,我不知道为什么会这样?
我是否有可能不想使用弹出活动旋转我的第一个屏幕? 感谢
答案 0 :(得分:2)
您的列表正在重新加载,因为当方向发生变化时,活动会被销毁并重新创建。最简单的方法是手动处理活动中的方向变化 - 并且不做任何事情。此外,您可以在Manifest中为活动指定纵向或横向。然后你的清单会包含这样的内容:
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:allowBackup="true"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:screenOrientation="sensorPortait"
android:configChanges="keyboardHidden|orientation"
android:theme="@android:style/Theme.NoTitleBar" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".PreviewActivity"
android:screenOrientation="sensorLandscape"
android:label="@string/app_name"
android:configChanges="keyboardHidden|orientation"
android:theme="@android:style/Theme.Dialog"
android:excludeFromRecents="true" >
</activity>
...
</application>
请注意每项活动声明中的行android:configChanges
。另请注意行android:screenOrientation
- 添加了这些行后,您无需在代码中调用setRequestedOrientation
。