summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorGuang Zhu <guangzhu@google.com>2010-08-24 13:06:50 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2010-08-24 13:06:50 -0700
commitc4f44cb995c5905b6a814cd7f098e167bbfccb61 (patch)
tree0cc1f6653d22feacb69e238a6dd2c8560564e14f /tests
parent63134b3aee2143c6df1ae9e2f8e4d516e26a0e2a (diff)
parentddf4f32b53294a5bffb9b919c555977301228904 (diff)
downloadframeworks_base-c4f44cb995c5905b6a814cd7f098e167bbfccb61.zip
frameworks_base-c4f44cb995c5905b6a814cd7f098e167bbfccb61.tar.gz
frameworks_base-c4f44cb995c5905b6a814cd7f098e167bbfccb61.tar.bz2
Merge "change the DRT to use Light theme"
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"