summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorGuang Zhu <guangzhu@google.com>2010-08-24 12:09:26 -0700
committerGuang Zhu <guangzhu@google.com>2010-08-24 13:05:36 -0700
commitddf4f32b53294a5bffb9b919c555977301228904 (patch)
tree82a4e3e3774b3437e0e72bdba994c1acad84f15b /tests
parent81b5db042b3d5d8c6caa6e543c871e75e40b7b87 (diff)
downloadframeworks_base-ddf4f32b53294a5bffb9b919c555977301228904.zip
frameworks_base-ddf4f32b53294a5bffb9b919c555977301228904.tar.gz
frameworks_base-ddf4f32b53294a5bffb9b919c555977301228904.tar.bz2
change the DRT to use Light theme
works around the Holo theme crash. Change-Id: I4e920629981bf3df0987bc4f65dc63644b3670b2
Diffstat (limited to 'tests')
-rw-r--r--tests/DumpRenderTree/AndroidManifest.xml9
1 files changed, 6 insertions, 3 deletions
diff --git a/tests/DumpRenderTree/AndroidManifest.xml b/tests/DumpRenderTree/AndroidManifest.xml
index 03b7e26..c151251 100644
--- a/tests/DumpRenderTree/AndroidManifest.xml
+++ b/tests/DumpRenderTree/AndroidManifest.xml
@@ -18,15 +18,18 @@
<application android:name="HTMLHostApp">
<uses-library android:name="android.test.runner" />
<activity android:name="Menu" android:label="Dump Render Tree"
- android:screenOrientation="portrait">
+ android:screenOrientation="portrait"
+ android:theme="@android:style/Theme.Light">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.TEST" />
</intent-filter>
</activity>
<activity android:name="TestShellActivity" android:launchMode="singleTop"
- android:screenOrientation="portrait"/>
- <activity android:name="ReliabilityTestActivity" android:screenOrientation="portrait"/>
+ android:screenOrientation="portrait"
+ android:theme="@android:style/Theme.Light"/>
+ <activity android:name="ReliabilityTestActivity" android:screenOrientation="portrait"
+ android:theme="@android:style/Theme.Light"/>
</application>
<instrumentation android:name=".LayoutTestsAutoRunner"