Merge "Prevent orientation change from triggering activity recreation." into eclair

This commit is contained in:
Guang Zhu
2010-01-19 11:53:00 -08:00
committed by Android (Google) Code Review

View File

@@ -17,14 +17,16 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.android.dumprendertree"> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.android.dumprendertree">
<application android:name="HTMLHostApp"> <application android:name="HTMLHostApp">
<uses-library android:name="android.test.runner" /> <uses-library android:name="android.test.runner" />
<activity android:name="Menu" android:label="1 Dump Render Tree"> <activity android:name="Menu" android:label="Dump Render Tree"
android:screenOrientation="portrait">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.MAIN" /> <action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.TEST" /> <category android:name="android.intent.category.TEST" />
</intent-filter> </intent-filter>
</activity> </activity>
<activity android:name="TestShellActivity" android:launchMode="singleTop" /> <activity android:name="TestShellActivity" android:launchMode="singleTop"
<activity android:name="ReliabilityTestActivity" /> android:screenOrientation="portrait"/>
<activity android:name="ReliabilityTestActivity" android:screenOrientation="portrait"/>
</application> </application>
<instrumentation android:name=".LayoutTestsAutoRunner" <instrumentation android:name=".LayoutTestsAutoRunner"