New Holo Theme Tests

Bug 5404694

These tests check that the Holo theme assets have not been
altered. The code is based upon the techniques in android.theme
of inflating a view in a fixed dp with layout, taking a bitmap,
and comparing it with a reference bitmap.

It does not incorporate the activity snapshot or split activity
snapshot tests of android.theme due to test instability issues.

This version tries to simplify a couple things:

- A utility activity is included in CtsThemeTestCases that let
  you view individual tests and lets you generate all the reference
  images.

- Saves the bitmaps to the external storage directory, so you don't
  need root!

- Doesn't generate landscape permutations of the bitmaps, because
  the widgets shouldn't differ too much by being in landscape...

This initial change includes assets for hdpi, large-mdpi, and xhdpi.

Change-Id: I9d9f304494ee95bf8d772f1c0e0e0b73a8fc8317
diff --git a/CtsTestCaseList.mk b/CtsTestCaseList.mk
index bf67a15..3923aac 100644
--- a/CtsTestCaseList.mk
+++ b/CtsTestCaseList.mk
@@ -42,6 +42,7 @@
 	CtsGestureTestCases \
 	CtsGraphicsTestCases \
 	CtsHardwareTestCases \
+	CtsHoloTestCases \
 	CtsJniTestCases \
 	CtsLocationTestCases \
 	CtsMediaTestCases \
diff --git a/development/ide/eclipse/.classpath b/development/ide/eclipse/.classpath
index a1917b3..7e2f5c6 100644
--- a/development/ide/eclipse/.classpath
+++ b/development/ide/eclipse/.classpath
@@ -33,6 +33,7 @@
     <classpathentry kind="src" path="cts/tests/tests/gesture/src"/>
     <classpathentry kind="src" path="cts/tests/tests/graphics/src"/>
     <classpathentry kind="src" path="cts/tests/tests/hardware/src"/>
+    <classpathentry kind="src" path="cts/tests/tests/holo/src"/>
     <classpathentry kind="src" path="cts/tests/tests/jni/src"/>
     <classpathentry kind="src" path="cts/tests/tests/location/src"/>
     <classpathentry kind="src" path="cts/tests/tests/media/src"/>
@@ -51,7 +52,6 @@
     <classpathentry kind="src" path="cts/tests/tests/speech/src"/>
     <classpathentry kind="src" path="cts/tests/tests/telephony/src"/>
     <classpathentry kind="src" path="cts/tests/tests/text/src"/>
-    <classpathentry kind="src" path="cts/tests/tests/theme/src"/>
     <classpathentry kind="src" path="cts/tests/tests/util/src"/>
     <classpathentry kind="src" path="cts/tests/tests/view/src"/>
     <classpathentry kind="src" path="cts/tests/tests/webkit/src"/>
diff --git a/tests/tests/holo/Android.mk b/tests/tests/holo/Android.mk
new file mode 100644
index 0000000..63dbb37
--- /dev/null
+++ b/tests/tests/holo/Android.mk
@@ -0,0 +1,36 @@
+# Copyright (C) 2011 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+LOCAL_PATH:= $(call my-dir)
+include $(CLEAR_VARS)
+
+# don't include this package in any target
+LOCAL_MODULE_TAGS := optional
+# and when built explicitly put it in the data partition
+LOCAL_MODULE_PATH := $(TARGET_OUT_DATA_APPS)
+
+LOCAL_JAVA_LIBRARIES := android.test.runner
+
+LOCAL_SRC_FILES := $(call all-java-files-under, src)
+
+# Resource unit tests use a private locale and some densities
+LOCAL_AAPT_FLAGS = -c xx_YY -c cs -c 320dpi -c 240dpi -c 160dpi
+
+LOCAL_PACKAGE_NAME := CtsHoloTestCases
+
+LOCAL_MODULE_TAGS := tests
+
+LOCAL_SDK_VERSION := current
+
+include $(BUILD_PACKAGE)
diff --git a/tests/tests/holo/AndroidManifest.xml b/tests/tests/holo/AndroidManifest.xml
new file mode 100644
index 0000000..ddc3fad
--- /dev/null
+++ b/tests/tests/holo/AndroidManifest.xml
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+        package="com.android.cts.holo">
+
+    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
+
+    <application>
+        <uses-library android:name="android.test.runner" />
+
+        <activity android:name="android.holo.cts.HoloTestUtilitiesActivity" 
+                android:label="@string/holo_test_utilities">
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN" />
+                <category android:name="android.intent.category.LAUNCHER" />
+            </intent-filter>
+        </activity>
+
+        <activity android:name="android.holo.cts.ThemePickerActivity" 
+                android:label="@string/pick_theme" />
+
+        <activity android:name="android.holo.cts.LayoutPickerActivity" 
+                android:label="@string/pick_layout" />
+
+        <activity android:name="android.holo.cts.ThemeTestActivity"
+                android:screenOrientation="nosensor"
+                android:theme="@android:style/Theme.Translucent.NoTitleBar" />
+
+        <activity android:name="android.holo.cts.LayoutTestActivity" 
+                android:screenOrientation="nosensor" />
+                
+        <activity android:name="android.holo.cts.BitmapDeletionActivity"
+                android:configChanges="keyboardHidden|orientation"
+                android:theme="@android:style/Theme.Translucent.NoTitleBar" />
+
+    </application>
+    
+    <instrumentation android:name="android.test.InstrumentationTestRunner"
+            android:targetPackage="com.android.cts.holo"
+            android:label="CTS tests for the Holo theme" />
+
+</manifest>
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_alertdialog_list.png
new file mode 100644
index 0000000..aa074c1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_alertdialog_multichoice.png
new file mode 100644
index 0000000..205b855
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_alertdialog_onebutton.png
new file mode 100644
index 0000000..356c230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_alertdialog_singlechoice.png
new file mode 100644
index 0000000..4d0d20c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_alertdialog_threebuttons.png
new file mode 100644
index 0000000..33d0641
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_alertdialog_twobuttons.png
new file mode 100644
index 0000000..5969402
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_button.png b/tests/tests/holo/res/drawable-hdpi/holo_button.png
new file mode 100644
index 0000000..1c65266
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_button_pressed.png
new file mode 100644
index 0000000..797dccc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_calendar_view.png
new file mode 100644
index 0000000..7106a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_checkbox.png
new file mode 100644
index 0000000..97e83b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_checkbox_checked.png
new file mode 100644
index 0000000..88934c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_chronometer.png
new file mode 100644
index 0000000..65af9b3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_color_blue_bright.png
new file mode 100644
index 0000000..2d1e63f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_color_blue_dark.png
new file mode 100644
index 0000000..914e522
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_color_blue_light.png
new file mode 100644
index 0000000..a6f2f65
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_color_green_dark.png
new file mode 100644
index 0000000..2cf79d0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_color_green_light.png
new file mode 100644
index 0000000..508a96e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_color_orange_dark.png
new file mode 100644
index 0000000..4a0157f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_color_orange_light.png
new file mode 100644
index 0000000..0bdb9be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_color_purple.png
new file mode 100644
index 0000000..97071db
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_color_red_dark.png
new file mode 100644
index 0000000..dbcef9d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_color_red_light.png
new file mode 100644
index 0000000..c60546f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_alertdialog_list.png
new file mode 100644
index 0000000..aa074c1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_alertdialog_multichoice.png
new file mode 100644
index 0000000..205b855
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_alertdialog_onebutton.png
new file mode 100644
index 0000000..356c230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_alertdialog_singlechoice.png
new file mode 100644
index 0000000..4d0d20c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_alertdialog_threebuttons.png
new file mode 100644
index 0000000..33d0641
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_alertdialog_twobuttons.png
new file mode 100644
index 0000000..5969402
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_button.png
new file mode 100644
index 0000000..1c65266
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_button_pressed.png
new file mode 100644
index 0000000..797dccc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_calendar_view.png
new file mode 100644
index 0000000..7106a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_checkbox.png
new file mode 100644
index 0000000..97e83b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_checkbox_checked.png
new file mode 100644
index 0000000..88934c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_chronometer.png
new file mode 100644
index 0000000..65af9b3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_blue_bright.png
new file mode 100644
index 0000000..2d1e63f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_blue_dark.png
new file mode 100644
index 0000000..914e522
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_blue_light.png
new file mode 100644
index 0000000..a6f2f65
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_green_dark.png
new file mode 100644
index 0000000..2cf79d0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_green_light.png
new file mode 100644
index 0000000..508a96e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_orange_dark.png
new file mode 100644
index 0000000..4a0157f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_orange_light.png
new file mode 100644
index 0000000..0bdb9be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_purple.png
new file mode 100644
index 0000000..97071db
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_red_dark.png
new file mode 100644
index 0000000..dbcef9d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_red_light.png
new file mode 100644
index 0000000..c60546f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_edittext.png
new file mode 100644
index 0000000..369d7b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_alertdialog_list.png
new file mode 100644
index 0000000..aa074c1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_alertdialog_multichoice.png
new file mode 100644
index 0000000..205b855
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_alertdialog_onebutton.png
new file mode 100644
index 0000000..356c230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_alertdialog_singlechoice.png
new file mode 100644
index 0000000..4d0d20c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_alertdialog_threebuttons.png
new file mode 100644
index 0000000..33d0641
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_alertdialog_twobuttons.png
new file mode 100644
index 0000000..5969402
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_button.png
new file mode 100644
index 0000000..1c65266
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_button_pressed.png
new file mode 100644
index 0000000..797dccc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..7106a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_checkbox.png
new file mode 100644
index 0000000..97e83b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..88934c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_chronometer.png
new file mode 100644
index 0000000..65af9b3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..2d1e63f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..914e522
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_blue_light.png
new file mode 100644
index 0000000..a6f2f65
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_green_dark.png
new file mode 100644
index 0000000..2cf79d0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_green_light.png
new file mode 100644
index 0000000..508a96e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..4a0157f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_orange_light.png
new file mode 100644
index 0000000..0bdb9be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_purple.png
new file mode 100644
index 0000000..97071db
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_red_dark.png
new file mode 100644
index 0000000..dbcef9d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_red_light.png
new file mode 100644
index 0000000..c60546f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_edittext.png
new file mode 100644
index 0000000..369d7b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..7923142
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..d94e0ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..0891a0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressdialog_horizontal.png
new file mode 100644
index 0000000..168b54f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_radio_button.png
new file mode 100644
index 0000000..50c99a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..5959f1b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..bfe6918
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..5a74bfb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..3ab433c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..4dc4b05
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..2ca1852
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..84d8b8c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..87c629e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..1122d5e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_searchview.png
new file mode 100644
index 0000000..2316e8a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_searchview_query.png
new file mode 100644
index 0000000..1eb04da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..bdf014a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_seekbar_0.png
new file mode 100644
index 0000000..b194d4e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_seekbar_100.png
new file mode 100644
index 0000000..b89ea7d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_seekbar_50.png
new file mode 100644
index 0000000..3100469
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_spinner.png
new file mode 100644
index 0000000..9aaac14
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_switch.png
new file mode 100644
index 0000000..38fe4e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_switch_checked.png
new file mode 100644
index 0000000..d85ceaa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_tabhost.png
new file mode 100644
index 0000000..27698b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_textview.png
new file mode 100644
index 0000000..85547e3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_timepicker.png
new file mode 100644
index 0000000..4402c11
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_toggle_button.png
new file mode 100644
index 0000000..e101854
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..2daed75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_zoomcontrols.png
new file mode 100644
index 0000000..5763406
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_alertdialog_list.png
new file mode 100644
index 0000000..aa074c1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_alertdialog_multichoice.png
new file mode 100644
index 0000000..205b855
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_alertdialog_onebutton.png
new file mode 100644
index 0000000..356c230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_alertdialog_singlechoice.png
new file mode 100644
index 0000000..4d0d20c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_alertdialog_threebuttons.png
new file mode 100644
index 0000000..33d0641
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_alertdialog_twobuttons.png
new file mode 100644
index 0000000..5969402
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_button.png
new file mode 100644
index 0000000..1c65266
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_button_pressed.png
new file mode 100644
index 0000000..797dccc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..7106a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_checkbox.png
new file mode 100644
index 0000000..97e83b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..88934c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_chronometer.png
new file mode 100644
index 0000000..65af9b3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..2d1e63f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..914e522
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..a6f2f65
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..2cf79d0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_green_light.png
new file mode 100644
index 0000000..508a96e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..4a0157f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..0bdb9be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_purple.png
new file mode 100644
index 0000000..97071db
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..dbcef9d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_red_light.png
new file mode 100644
index 0000000..c60546f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_edittext.png
new file mode 100644
index 0000000..369d7b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_alertdialog_list.png
new file mode 100644
index 0000000..aa074c1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_alertdialog_multichoice.png
new file mode 100644
index 0000000..205b855
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_alertdialog_onebutton.png
new file mode 100644
index 0000000..356c230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_alertdialog_singlechoice.png
new file mode 100644
index 0000000..4d0d20c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_alertdialog_threebuttons.png
new file mode 100644
index 0000000..33d0641
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_alertdialog_twobuttons.png
new file mode 100644
index 0000000..5969402
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_button.png
new file mode 100644
index 0000000..1c65266
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
new file mode 100644
index 0000000..797dccc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..7106a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_checkbox.png
new file mode 100644
index 0000000..97e83b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..88934c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_chronometer.png
new file mode 100644
index 0000000..65af9b3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..2d1e63f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..914e522
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
new file mode 100644
index 0000000..a6f2f65
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
new file mode 100644
index 0000000..2cf79d0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
new file mode 100644
index 0000000..508a96e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..4a0157f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
new file mode 100644
index 0000000..0bdb9be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_purple.png
new file mode 100644
index 0000000..97071db
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
new file mode 100644
index 0000000..dbcef9d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
new file mode 100644
index 0000000..c60546f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_edittext.png
new file mode 100644
index 0000000..369d7b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..7923142
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..d94e0ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..0891a0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressdialog_horizontal.png
new file mode 100644
index 0000000..168b54f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_radio_button.png
new file mode 100644
index 0000000..50c99a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..5959f1b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..bfe6918
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..5a74bfb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..3ab433c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..4dc4b05
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..2ca1852
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..84d8b8c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..87c629e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..1122d5e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_searchview.png
new file mode 100644
index 0000000..2316e8a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
new file mode 100644
index 0000000..1eb04da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..bdf014a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
new file mode 100644
index 0000000..b194d4e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
new file mode 100644
index 0000000..b89ea7d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
new file mode 100644
index 0000000..3100469
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_spinner.png
new file mode 100644
index 0000000..9aaac14
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_switch.png
new file mode 100644
index 0000000..38fe4e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
new file mode 100644
index 0000000..d85ceaa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_tabhost.png
new file mode 100644
index 0000000..27698b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_textview.png
new file mode 100644
index 0000000..85547e3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_timepicker.png
new file mode 100644
index 0000000..4402c11
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
new file mode 100644
index 0000000..e101854
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..2daed75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_zoomcontrols.png
new file mode 100644
index 0000000..5763406
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..7923142
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..d94e0ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..0891a0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressdialog_horizontal.png
new file mode 100644
index 0000000..168b54f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_radio_button.png
new file mode 100644
index 0000000..50c99a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..5959f1b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..bfe6918
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..5a74bfb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..3ab433c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..4dc4b05
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..2ca1852
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..84d8b8c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..87c629e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..1122d5e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_searchview.png
new file mode 100644
index 0000000..2316e8a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_searchview_query.png
new file mode 100644
index 0000000..1eb04da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..bdf014a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..b194d4e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..b89ea7d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..3100469
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_spinner.png
new file mode 100644
index 0000000..9aaac14
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_switch.png
new file mode 100644
index 0000000..38fe4e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_switch_checked.png
new file mode 100644
index 0000000..d85ceaa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_tabhost.png
new file mode 100644
index 0000000..27698b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_textview.png
new file mode 100644
index 0000000..85547e3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_timepicker.png
new file mode 100644
index 0000000..4402c11
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_toggle_button.png
new file mode 100644
index 0000000..e101854
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..2daed75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_zoomcontrols.png
new file mode 100644
index 0000000..5763406
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_horizontal_0.png
new file mode 100644
index 0000000..7923142
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_horizontal_100.png
new file mode 100644
index 0000000..d94e0ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_horizontal_50.png
new file mode 100644
index 0000000..0891a0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressdialog_horizontal.png
new file mode 100644
index 0000000..168b54f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_radio_button.png
new file mode 100644
index 0000000..50c99a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_radio_button_checked.png
new file mode 100644
index 0000000..5959f1b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_radiogroup_horizontal.png
new file mode 100644
index 0000000..bfe6918
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_radiogroup_vertical.png
new file mode 100644
index 0000000..5a74bfb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_0.png
new file mode 100644
index 0000000..3ab433c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_0_pressed.png
new file mode 100644
index 0000000..4dc4b05
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_2point5.png
new file mode 100644
index 0000000..2ca1852
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..84d8b8c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_5.png
new file mode 100644
index 0000000..87c629e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_5_pressed.png
new file mode 100644
index 0000000..1122d5e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_searchview.png
new file mode 100644
index 0000000..2316e8a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_searchview_query.png
new file mode 100644
index 0000000..1eb04da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_searchview_query_hint.png
new file mode 100644
index 0000000..bdf014a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_seekbar_0.png
new file mode 100644
index 0000000..b194d4e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_seekbar_100.png
new file mode 100644
index 0000000..b89ea7d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_seekbar_50.png
new file mode 100644
index 0000000..3100469
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_spinner.png
new file mode 100644
index 0000000..9aaac14
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_switch.png
new file mode 100644
index 0000000..38fe4e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_switch_checked.png
new file mode 100644
index 0000000..d85ceaa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_tabhost.png
new file mode 100644
index 0000000..27698b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_textview.png
new file mode 100644
index 0000000..85547e3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_timepicker.png
new file mode 100644
index 0000000..4402c11
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_toggle_button.png
new file mode 100644
index 0000000..e101854
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_toggle_button_checked.png
new file mode 100644
index 0000000..2daed75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_zoomcontrols.png
new file mode 100644
index 0000000..5763406
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialog_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_alertdialog_list.png
new file mode 100644
index 0000000..aa074c1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_alertdialog_multichoice.png
new file mode 100644
index 0000000..205b855
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_alertdialog_onebutton.png
new file mode 100644
index 0000000..356c230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_alertdialog_singlechoice.png
new file mode 100644
index 0000000..4d0d20c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_alertdialog_threebuttons.png
new file mode 100644
index 0000000..33d0641
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_alertdialog_twobuttons.png
new file mode 100644
index 0000000..5969402
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_button.png
new file mode 100644
index 0000000..1c65266
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_button_pressed.png
new file mode 100644
index 0000000..797dccc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..7106a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_checkbox.png
new file mode 100644
index 0000000..97e83b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_checkbox_checked.png
new file mode 100644
index 0000000..88934c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_chronometer.png
new file mode 100644
index 0000000..65af9b3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_blue_bright.png
new file mode 100644
index 0000000..2d1e63f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_blue_dark.png
new file mode 100644
index 0000000..914e522
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_blue_light.png
new file mode 100644
index 0000000..a6f2f65
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_green_dark.png
new file mode 100644
index 0000000..2cf79d0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_green_light.png
new file mode 100644
index 0000000..508a96e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_orange_dark.png
new file mode 100644
index 0000000..4a0157f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_orange_light.png
new file mode 100644
index 0000000..0bdb9be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_purple.png
new file mode 100644
index 0000000..97071db
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_red_dark.png
new file mode 100644
index 0000000..dbcef9d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_red_light.png
new file mode 100644
index 0000000..c60546f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_edittext.png
new file mode 100644
index 0000000..369d7b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_alertdialog_list.png
new file mode 100644
index 0000000..aa074c1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_alertdialog_multichoice.png
new file mode 100644
index 0000000..205b855
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_alertdialog_onebutton.png
new file mode 100644
index 0000000..356c230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_alertdialog_singlechoice.png
new file mode 100644
index 0000000..4d0d20c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_alertdialog_threebuttons.png
new file mode 100644
index 0000000..33d0641
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_alertdialog_twobuttons.png
new file mode 100644
index 0000000..5969402
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_button.png
new file mode 100644
index 0000000..1c65266
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
new file mode 100644
index 0000000..797dccc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..7106a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
new file mode 100644
index 0000000..97e83b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..88934c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
new file mode 100644
index 0000000..65af9b3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..2d1e63f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..914e522
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..a6f2f65
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..2cf79d0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
new file mode 100644
index 0000000..508a96e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..4a0157f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..0bdb9be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
new file mode 100644
index 0000000..97071db
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..dbcef9d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
new file mode 100644
index 0000000..c60546f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_edittext.png
new file mode 100644
index 0000000..369d7b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..7923142
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..d94e0ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..0891a0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressdialog_horizontal.png
new file mode 100644
index 0000000..168b54f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
new file mode 100644
index 0000000..50c99a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..5959f1b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..bfe6918
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..5a74bfb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..3ab433c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..4dc4b05
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..2ca1852
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..84d8b8c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..87c629e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..1122d5e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_searchview.png
new file mode 100644
index 0000000..2316e8a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
new file mode 100644
index 0000000..1eb04da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..bdf014a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..b194d4e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..b89ea7d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..3100469
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_spinner.png
new file mode 100644
index 0000000..9aaac14
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_switch.png
new file mode 100644
index 0000000..38fe4e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
new file mode 100644
index 0000000..d85ceaa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
new file mode 100644
index 0000000..27698b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_textview.png
new file mode 100644
index 0000000..85547e3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
new file mode 100644
index 0000000..4402c11
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
new file mode 100644
index 0000000..e101854
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..2daed75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_zoomcontrols.png
new file mode 100644
index 0000000..5763406
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
new file mode 100644
index 0000000..7923142
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
new file mode 100644
index 0000000..d94e0ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
new file mode 100644
index 0000000..0891a0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressdialog_horizontal.png
new file mode 100644
index 0000000..168b54f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_radio_button.png
new file mode 100644
index 0000000..50c99a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_radio_button_checked.png
new file mode 100644
index 0000000..5959f1b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
new file mode 100644
index 0000000..bfe6918
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_radiogroup_vertical.png
new file mode 100644
index 0000000..5a74bfb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_0.png
new file mode 100644
index 0000000..3ab433c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
new file mode 100644
index 0000000..4dc4b05
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_2point5.png
new file mode 100644
index 0000000..2ca1852
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..84d8b8c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_5.png
new file mode 100644
index 0000000..87c629e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
new file mode 100644
index 0000000..1122d5e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_searchview.png
new file mode 100644
index 0000000..2316e8a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_searchview_query.png
new file mode 100644
index 0000000..1eb04da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_searchview_query_hint.png
new file mode 100644
index 0000000..bdf014a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_seekbar_0.png
new file mode 100644
index 0000000..b194d4e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_seekbar_100.png
new file mode 100644
index 0000000..b89ea7d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_seekbar_50.png
new file mode 100644
index 0000000..3100469
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_spinner.png
new file mode 100644
index 0000000..9aaac14
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_switch.png
new file mode 100644
index 0000000..38fe4e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_switch_checked.png
new file mode 100644
index 0000000..d85ceaa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_tabhost.png
new file mode 100644
index 0000000..27698b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_textview.png
new file mode 100644
index 0000000..85547e3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_timepicker.png
new file mode 100644
index 0000000..4402c11
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_toggle_button.png
new file mode 100644
index 0000000..e101854
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_toggle_button_checked.png
new file mode 100644
index 0000000..2daed75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_zoomcontrols.png
new file mode 100644
index 0000000..5763406
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_edittext.png
new file mode 100644
index 0000000..369d7b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_alertdialog_list.png
new file mode 100644
index 0000000..19843c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_alertdialog_multichoice.png
new file mode 100644
index 0000000..45a8da0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_alertdialog_onebutton.png
new file mode 100644
index 0000000..7382c6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_alertdialog_singlechoice.png
new file mode 100644
index 0000000..c1e7f2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_alertdialog_threebuttons.png
new file mode 100644
index 0000000..2c65d33
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_alertdialog_twobuttons.png
new file mode 100644
index 0000000..d8c1bc4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_button.png
new file mode 100644
index 0000000..8c096ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_button_pressed.png
new file mode 100644
index 0000000..5c4d96c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_calendar_view.png
new file mode 100644
index 0000000..e606cc8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_checkbox.png
new file mode 100644
index 0000000..6fd2ba2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_checkbox_checked.png
new file mode 100644
index 0000000..f52884c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_chronometer.png
new file mode 100644
index 0000000..5ede793
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_blue_bright.png
new file mode 100644
index 0000000..2d1e63f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_blue_dark.png
new file mode 100644
index 0000000..914e522
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_blue_light.png
new file mode 100644
index 0000000..a6f2f65
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_green_dark.png
new file mode 100644
index 0000000..2cf79d0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_green_light.png
new file mode 100644
index 0000000..508a96e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_orange_dark.png
new file mode 100644
index 0000000..4a0157f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_orange_light.png
new file mode 100644
index 0000000..0bdb9be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_purple.png
new file mode 100644
index 0000000..97071db
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_red_dark.png
new file mode 100644
index 0000000..dbcef9d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_red_light.png
new file mode 100644
index 0000000..c60546f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_edittext.png
new file mode 100644
index 0000000..4356dd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_horizontal_0.png
new file mode 100644
index 0000000..8a2248d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_horizontal_100.png
new file mode 100644
index 0000000..069a67e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_horizontal_50.png
new file mode 100644
index 0000000..d7fa13d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressdialog_horizontal.png
new file mode 100644
index 0000000..cd50fe6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_radio_button.png
new file mode 100644
index 0000000..8d0bd4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_radio_button_checked.png
new file mode 100644
index 0000000..26f65ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_radiogroup_horizontal.png
new file mode 100644
index 0000000..dad7afc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_radiogroup_vertical.png
new file mode 100644
index 0000000..d8e8dfb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_0.png
new file mode 100644
index 0000000..b7ed0fd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_0_pressed.png
new file mode 100644
index 0000000..eb69c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_2point5.png
new file mode 100644
index 0000000..8a38f74
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..1ad6086
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_5.png
new file mode 100644
index 0000000..1dd698f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_5_pressed.png
new file mode 100644
index 0000000..1a64fe9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_searchview.png
new file mode 100644
index 0000000..4fa916a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_searchview_query.png
new file mode 100644
index 0000000..bf3c4c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_searchview_query_hint.png
new file mode 100644
index 0000000..da47cb1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_seekbar_0.png
new file mode 100644
index 0000000..bbdaa9c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_seekbar_100.png
new file mode 100644
index 0000000..b89ea7d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_seekbar_50.png
new file mode 100644
index 0000000..e8320ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_spinner.png
new file mode 100644
index 0000000..d7f357a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_switch.png
new file mode 100644
index 0000000..64a0e59
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_switch_checked.png
new file mode 100644
index 0000000..cf3beea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_tabhost.png
new file mode 100644
index 0000000..462e9d3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_textview.png
new file mode 100644
index 0000000..bbb3acf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_timepicker.png
new file mode 100644
index 0000000..22805ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_toggle_button.png
new file mode 100644
index 0000000..49ce08d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_toggle_button_checked.png
new file mode 100644
index 0000000..9d240f3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_zoomcontrols.png
new file mode 100644
index 0000000..5763406
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_light_alertdialog_list.png
new file mode 100644
index 0000000..19843c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_alertdialog_multichoice.png
new file mode 100644
index 0000000..45a8da0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_light_alertdialog_onebutton.png
new file mode 100644
index 0000000..7382c6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_alertdialog_singlechoice.png
new file mode 100644
index 0000000..c1e7f2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_alertdialog_threebuttons.png
new file mode 100644
index 0000000..2c65d33
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_alertdialog_twobuttons.png
new file mode 100644
index 0000000..d8c1bc4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_button.png
new file mode 100644
index 0000000..8c096ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_button_pressed.png
new file mode 100644
index 0000000..5c4d96c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_light_calendar_view.png
new file mode 100644
index 0000000..e606cc8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_light_checkbox.png
new file mode 100644
index 0000000..6fd2ba2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_checkbox_checked.png
new file mode 100644
index 0000000..f52884c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_light_chronometer.png
new file mode 100644
index 0000000..5ede793
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_light_color_blue_bright.png
new file mode 100644
index 0000000..2d1e63f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_color_blue_dark.png
new file mode 100644
index 0000000..914e522
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_color_blue_light.png
new file mode 100644
index 0000000..a6f2f65
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_color_green_dark.png
new file mode 100644
index 0000000..2cf79d0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_color_green_light.png
new file mode 100644
index 0000000..508a96e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_color_orange_dark.png
new file mode 100644
index 0000000..4a0157f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_color_orange_light.png
new file mode 100644
index 0000000..0bdb9be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_light_color_purple.png
new file mode 100644
index 0000000..97071db
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_color_red_dark.png
new file mode 100644
index 0000000..dbcef9d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_color_red_light.png
new file mode 100644
index 0000000..c60546f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_alertdialog_list.png
new file mode 100644
index 0000000..19843c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_alertdialog_multichoice.png
new file mode 100644
index 0000000..45a8da0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_alertdialog_onebutton.png
new file mode 100644
index 0000000..7382c6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_alertdialog_singlechoice.png
new file mode 100644
index 0000000..c1e7f2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_alertdialog_threebuttons.png
new file mode 100644
index 0000000..2c65d33
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_alertdialog_twobuttons.png
new file mode 100644
index 0000000..d8c1bc4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_button.png
new file mode 100644
index 0000000..8c096ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_button_pressed.png
new file mode 100644
index 0000000..5c4d96c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_calendar_view.png
new file mode 100644
index 0000000..e606cc8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_checkbox.png
new file mode 100644
index 0000000..6fd2ba2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_checkbox_checked.png
new file mode 100644
index 0000000..f52884c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_chronometer.png
new file mode 100644
index 0000000..5ede793
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_blue_bright.png
new file mode 100644
index 0000000..2d1e63f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_blue_dark.png
new file mode 100644
index 0000000..914e522
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_blue_light.png
new file mode 100644
index 0000000..a6f2f65
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_green_dark.png
new file mode 100644
index 0000000..2cf79d0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_green_light.png
new file mode 100644
index 0000000..508a96e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_orange_dark.png
new file mode 100644
index 0000000..4a0157f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_orange_light.png
new file mode 100644
index 0000000..0bdb9be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_purple.png
new file mode 100644
index 0000000..97071db
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_red_dark.png
new file mode 100644
index 0000000..dbcef9d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_red_light.png
new file mode 100644
index 0000000..c60546f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_edittext.png
new file mode 100644
index 0000000..4356dd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..8a2248d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..069a67e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..d7fa13d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressdialog_horizontal.png
new file mode 100644
index 0000000..cd50fe6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_radio_button.png
new file mode 100644
index 0000000..8d0bd4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_radio_button_checked.png
new file mode 100644
index 0000000..26f65ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..dad7afc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..d8e8dfb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_0.png
new file mode 100644
index 0000000..b7ed0fd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..eb69c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..8a38f74
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..1ad6086
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_5.png
new file mode 100644
index 0000000..1dd698f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..1a64fe9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_searchview.png
new file mode 100644
index 0000000..4fa916a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_searchview_query.png
new file mode 100644
index 0000000..bf3c4c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..da47cb1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_seekbar_0.png
new file mode 100644
index 0000000..bbdaa9c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_seekbar_100.png
new file mode 100644
index 0000000..b89ea7d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_seekbar_50.png
new file mode 100644
index 0000000..e8320ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_spinner.png
new file mode 100644
index 0000000..d7f357a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_switch.png
new file mode 100644
index 0000000..64a0e59
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_switch_checked.png
new file mode 100644
index 0000000..cf3beea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_tabhost.png
new file mode 100644
index 0000000..462e9d3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_textview.png
new file mode 100644
index 0000000..bbb3acf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_timepicker.png
new file mode 100644
index 0000000..22805ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_toggle_button.png
new file mode 100644
index 0000000..49ce08d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..9d240f3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_zoomcontrols.png
new file mode 100644
index 0000000..5763406
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_alertdialog_list.png
new file mode 100644
index 0000000..19843c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_alertdialog_multichoice.png
new file mode 100644
index 0000000..45a8da0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_alertdialog_onebutton.png
new file mode 100644
index 0000000..7382c6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_alertdialog_singlechoice.png
new file mode 100644
index 0000000..c1e7f2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_alertdialog_threebuttons.png
new file mode 100644
index 0000000..2c65d33
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_alertdialog_twobuttons.png
new file mode 100644
index 0000000..d8c1bc4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_button.png
new file mode 100644
index 0000000..8c096ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_button_pressed.png
new file mode 100644
index 0000000..5c4d96c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_calendar_view.png
new file mode 100644
index 0000000..e606cc8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_checkbox.png
new file mode 100644
index 0000000..6fd2ba2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_checkbox_checked.png
new file mode 100644
index 0000000..f52884c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_chronometer.png
new file mode 100644
index 0000000..5ede793
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_blue_bright.png
new file mode 100644
index 0000000..2d1e63f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_blue_dark.png
new file mode 100644
index 0000000..914e522
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_blue_light.png
new file mode 100644
index 0000000..a6f2f65
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_green_dark.png
new file mode 100644
index 0000000..2cf79d0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_green_light.png
new file mode 100644
index 0000000..508a96e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_orange_dark.png
new file mode 100644
index 0000000..4a0157f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_orange_light.png
new file mode 100644
index 0000000..0bdb9be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_purple.png
new file mode 100644
index 0000000..97071db
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_red_dark.png
new file mode 100644
index 0000000..dbcef9d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_red_light.png
new file mode 100644
index 0000000..c60546f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_edittext.png
new file mode 100644
index 0000000..4356dd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_alertdialog_list.png
new file mode 100644
index 0000000..19843c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_alertdialog_multichoice.png
new file mode 100644
index 0000000..45a8da0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_alertdialog_onebutton.png
new file mode 100644
index 0000000..7382c6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_alertdialog_singlechoice.png
new file mode 100644
index 0000000..c1e7f2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_alertdialog_threebuttons.png
new file mode 100644
index 0000000..2c65d33
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_alertdialog_twobuttons.png
new file mode 100644
index 0000000..d8c1bc4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_button.png
new file mode 100644
index 0000000..8c096ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_button_pressed.png
new file mode 100644
index 0000000..5c4d96c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..e606cc8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_checkbox.png
new file mode 100644
index 0000000..6fd2ba2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..f52884c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_chronometer.png
new file mode 100644
index 0000000..5ede793
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..2d1e63f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..914e522
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_blue_light.png
new file mode 100644
index 0000000..a6f2f65
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_green_dark.png
new file mode 100644
index 0000000..2cf79d0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_green_light.png
new file mode 100644
index 0000000..508a96e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..4a0157f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_orange_light.png
new file mode 100644
index 0000000..0bdb9be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_purple.png
new file mode 100644
index 0000000..97071db
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_red_dark.png
new file mode 100644
index 0000000..dbcef9d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_red_light.png
new file mode 100644
index 0000000..c60546f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_edittext.png
new file mode 100644
index 0000000..4356dd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..8a2248d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..069a67e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..d7fa13d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressdialog_horizontal.png
new file mode 100644
index 0000000..cd50fe6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_radio_button.png
new file mode 100644
index 0000000..8d0bd4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..26f65ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..dad7afc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..d8e8dfb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..b7ed0fd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..eb69c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..8a38f74
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..1ad6086
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..1dd698f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..1a64fe9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_searchview.png
new file mode 100644
index 0000000..4fa916a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_searchview_query.png
new file mode 100644
index 0000000..bf3c4c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..da47cb1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_seekbar_0.png
new file mode 100644
index 0000000..bbdaa9c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_seekbar_100.png
new file mode 100644
index 0000000..b89ea7d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_seekbar_50.png
new file mode 100644
index 0000000..e8320ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_spinner.png
new file mode 100644
index 0000000..d7f357a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_switch.png
new file mode 100644
index 0000000..64a0e59
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_switch_checked.png
new file mode 100644
index 0000000..cf3beea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_tabhost.png
new file mode 100644
index 0000000..462e9d3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_textview.png
new file mode 100644
index 0000000..bbb3acf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_timepicker.png
new file mode 100644
index 0000000..22805ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_toggle_button.png
new file mode 100644
index 0000000..49ce08d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..9d240f3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_zoomcontrols.png
new file mode 100644
index 0000000..5763406
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_alertdialog_list.png
new file mode 100644
index 0000000..19843c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_alertdialog_multichoice.png
new file mode 100644
index 0000000..45a8da0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_alertdialog_onebutton.png
new file mode 100644
index 0000000..7382c6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_alertdialog_singlechoice.png
new file mode 100644
index 0000000..c1e7f2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_alertdialog_threebuttons.png
new file mode 100644
index 0000000..2c65d33
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_alertdialog_twobuttons.png
new file mode 100644
index 0000000..d8c1bc4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_button.png
new file mode 100644
index 0000000..8c096ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_button_pressed.png
new file mode 100644
index 0000000..5c4d96c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..e606cc8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_checkbox.png
new file mode 100644
index 0000000..6fd2ba2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..f52884c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_chronometer.png
new file mode 100644
index 0000000..5ede793
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..2d1e63f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..914e522
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..a6f2f65
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..2cf79d0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_green_light.png
new file mode 100644
index 0000000..508a96e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..4a0157f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..0bdb9be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_purple.png
new file mode 100644
index 0000000..97071db
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..dbcef9d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_red_light.png
new file mode 100644
index 0000000..c60546f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_edittext.png
new file mode 100644
index 0000000..4356dd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_list.png
new file mode 100644
index 0000000..19843c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_multichoice.png
new file mode 100644
index 0000000..45a8da0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_onebutton.png
new file mode 100644
index 0000000..7382c6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_singlechoice.png
new file mode 100644
index 0000000..c1e7f2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_threebuttons.png
new file mode 100644
index 0000000..2c65d33
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_twobuttons.png
new file mode 100644
index 0000000..d8c1bc4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_button.png
new file mode 100644
index 0000000..8c096ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
new file mode 100644
index 0000000..5c4d96c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..e606cc8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
new file mode 100644
index 0000000..6fd2ba2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..f52884c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
new file mode 100644
index 0000000..5ede793
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..2d1e63f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..914e522
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
new file mode 100644
index 0000000..a6f2f65
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
new file mode 100644
index 0000000..2cf79d0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
new file mode 100644
index 0000000..508a96e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..4a0157f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
new file mode 100644
index 0000000..0bdb9be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
new file mode 100644
index 0000000..97071db
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
new file mode 100644
index 0000000..dbcef9d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
new file mode 100644
index 0000000..c60546f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
new file mode 100644
index 0000000..4356dd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..8a2248d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..069a67e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..d7fa13d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressdialog_horizontal.png
new file mode 100644
index 0000000..cd50fe6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
new file mode 100644
index 0000000..8d0bd4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..26f65ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..dad7afc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..d8e8dfb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..b7ed0fd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..eb69c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..8a38f74
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..1ad6086
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..1dd698f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..1a64fe9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
new file mode 100644
index 0000000..4fa916a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
new file mode 100644
index 0000000..bf3c4c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..da47cb1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
new file mode 100644
index 0000000..bbdaa9c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
new file mode 100644
index 0000000..b89ea7d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
new file mode 100644
index 0000000..e8320ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
new file mode 100644
index 0000000..d7f357a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_switch.png
new file mode 100644
index 0000000..64a0e59
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
new file mode 100644
index 0000000..cf3beea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
new file mode 100644
index 0000000..462e9d3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_textview.png
new file mode 100644
index 0000000..bbb3acf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
new file mode 100644
index 0000000..22805ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
new file mode 100644
index 0000000..49ce08d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..9d240f3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_zoomcontrols.png
new file mode 100644
index 0000000..5763406
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..8a2248d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..069a67e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..d7fa13d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressdialog_horizontal.png
new file mode 100644
index 0000000..cd50fe6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_radio_button.png
new file mode 100644
index 0000000..8d0bd4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..26f65ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..dad7afc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..d8e8dfb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..b7ed0fd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..eb69c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..8a38f74
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..1ad6086
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..1dd698f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..1a64fe9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_searchview.png
new file mode 100644
index 0000000..4fa916a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_searchview_query.png
new file mode 100644
index 0000000..bf3c4c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..da47cb1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..bbdaa9c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..b89ea7d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..e8320ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_spinner.png
new file mode 100644
index 0000000..d7f357a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_switch.png
new file mode 100644
index 0000000..64a0e59
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_switch_checked.png
new file mode 100644
index 0000000..cf3beea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_tabhost.png
new file mode 100644
index 0000000..462e9d3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_textview.png
new file mode 100644
index 0000000..bbb3acf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_timepicker.png
new file mode 100644
index 0000000..22805ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_toggle_button.png
new file mode 100644
index 0000000..49ce08d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..9d240f3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_zoomcontrols.png
new file mode 100644
index 0000000..5763406
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_horizontal_0.png
new file mode 100644
index 0000000..8a2248d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_horizontal_100.png
new file mode 100644
index 0000000..069a67e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_horizontal_50.png
new file mode 100644
index 0000000..d7fa13d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressdialog_horizontal.png
new file mode 100644
index 0000000..cd50fe6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_radio_button.png
new file mode 100644
index 0000000..8d0bd4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_radio_button_checked.png
new file mode 100644
index 0000000..26f65ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_radiogroup_horizontal.png
new file mode 100644
index 0000000..dad7afc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_radiogroup_vertical.png
new file mode 100644
index 0000000..d8e8dfb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_0.png
new file mode 100644
index 0000000..b7ed0fd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_0_pressed.png
new file mode 100644
index 0000000..eb69c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_2point5.png
new file mode 100644
index 0000000..8a38f74
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..1ad6086
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_5.png
new file mode 100644
index 0000000..1dd698f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_5_pressed.png
new file mode 100644
index 0000000..1a64fe9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_searchview.png
new file mode 100644
index 0000000..4fa916a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_searchview_query.png
new file mode 100644
index 0000000..bf3c4c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_searchview_query_hint.png
new file mode 100644
index 0000000..da47cb1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_seekbar_0.png
new file mode 100644
index 0000000..bbdaa9c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_seekbar_100.png
new file mode 100644
index 0000000..b89ea7d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_seekbar_50.png
new file mode 100644
index 0000000..e8320ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_spinner.png
new file mode 100644
index 0000000..d7f357a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_switch.png
new file mode 100644
index 0000000..64a0e59
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_switch_checked.png
new file mode 100644
index 0000000..cf3beea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_tabhost.png
new file mode 100644
index 0000000..462e9d3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_textview.png
new file mode 100644
index 0000000..bbb3acf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_timepicker.png
new file mode 100644
index 0000000..22805ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_toggle_button.png
new file mode 100644
index 0000000..49ce08d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_toggle_button_checked.png
new file mode 100644
index 0000000..9d240f3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_zoomcontrols.png
new file mode 100644
index 0000000..5763406
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_alertdialog_list.png
new file mode 100644
index 0000000..19843c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_alertdialog_multichoice.png
new file mode 100644
index 0000000..45a8da0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_alertdialog_onebutton.png
new file mode 100644
index 0000000..7382c6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_alertdialog_singlechoice.png
new file mode 100644
index 0000000..c1e7f2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_alertdialog_threebuttons.png
new file mode 100644
index 0000000..2c65d33
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_alertdialog_twobuttons.png
new file mode 100644
index 0000000..d8c1bc4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_button.png
new file mode 100644
index 0000000..8c096ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_button_pressed.png
new file mode 100644
index 0000000..5c4d96c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..e606cc8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_checkbox.png
new file mode 100644
index 0000000..6fd2ba2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_checkbox_checked.png
new file mode 100644
index 0000000..f52884c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_chronometer.png
new file mode 100644
index 0000000..5ede793
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_blue_bright.png
new file mode 100644
index 0000000..2d1e63f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_blue_dark.png
new file mode 100644
index 0000000..914e522
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_blue_light.png
new file mode 100644
index 0000000..a6f2f65
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_green_dark.png
new file mode 100644
index 0000000..2cf79d0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_green_light.png
new file mode 100644
index 0000000..508a96e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_orange_dark.png
new file mode 100644
index 0000000..4a0157f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_orange_light.png
new file mode 100644
index 0000000..0bdb9be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_purple.png
new file mode 100644
index 0000000..97071db
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_red_dark.png
new file mode 100644
index 0000000..dbcef9d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_red_light.png
new file mode 100644
index 0000000..c60546f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_edittext.png
new file mode 100644
index 0000000..4356dd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_list.png
new file mode 100644
index 0000000..19843c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_multichoice.png
new file mode 100644
index 0000000..45a8da0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_onebutton.png
new file mode 100644
index 0000000..7382c6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_singlechoice.png
new file mode 100644
index 0000000..c1e7f2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_threebuttons.png
new file mode 100644
index 0000000..2c65d33
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_twobuttons.png
new file mode 100644
index 0000000..d8c1bc4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_button.png
new file mode 100644
index 0000000..8c096ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
new file mode 100644
index 0000000..5c4d96c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..e606cc8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
new file mode 100644
index 0000000..6fd2ba2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..f52884c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
new file mode 100644
index 0000000..5ede793
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..2d1e63f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..914e522
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..a6f2f65
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..2cf79d0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
new file mode 100644
index 0000000..508a96e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..4a0157f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..0bdb9be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
new file mode 100644
index 0000000..97071db
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..dbcef9d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
new file mode 100644
index 0000000..c60546f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
new file mode 100644
index 0000000..4356dd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..8a2248d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..069a67e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..d7fa13d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressdialog_horizontal.png
new file mode 100644
index 0000000..cd50fe6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
new file mode 100644
index 0000000..8d0bd4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..26f65ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..dad7afc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..d8e8dfb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..b7ed0fd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..eb69c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..8a38f74
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..1ad6086
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..1dd698f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..1a64fe9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
new file mode 100644
index 0000000..4fa916a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
new file mode 100644
index 0000000..bf3c4c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..da47cb1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..bbdaa9c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..b89ea7d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..e8320ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
new file mode 100644
index 0000000..d7f357a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
new file mode 100644
index 0000000..64a0e59
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
new file mode 100644
index 0000000..cf3beea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
new file mode 100644
index 0000000..462e9d3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
new file mode 100644
index 0000000..bbb3acf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
new file mode 100644
index 0000000..22805ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
new file mode 100644
index 0000000..49ce08d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..9d240f3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_zoomcontrols.png
new file mode 100644
index 0000000..5763406
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
new file mode 100644
index 0000000..8a2248d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
new file mode 100644
index 0000000..069a67e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
new file mode 100644
index 0000000..d7fa13d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressdialog_horizontal.png
new file mode 100644
index 0000000..cd50fe6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_radio_button.png
new file mode 100644
index 0000000..8d0bd4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_radio_button_checked.png
new file mode 100644
index 0000000..26f65ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
new file mode 100644
index 0000000..dad7afc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
new file mode 100644
index 0000000..d8e8dfb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_0.png
new file mode 100644
index 0000000..b7ed0fd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
new file mode 100644
index 0000000..eb69c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
new file mode 100644
index 0000000..8a38f74
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..1ad6086
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_5.png
new file mode 100644
index 0000000..1dd698f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
new file mode 100644
index 0000000..1a64fe9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_searchview.png
new file mode 100644
index 0000000..4fa916a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_searchview_query.png
new file mode 100644
index 0000000..bf3c4c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
new file mode 100644
index 0000000..da47cb1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_seekbar_0.png
new file mode 100644
index 0000000..bbdaa9c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_seekbar_100.png
new file mode 100644
index 0000000..b89ea7d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_seekbar_50.png
new file mode 100644
index 0000000..e8320ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_spinner.png
new file mode 100644
index 0000000..d7f357a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_switch.png
new file mode 100644
index 0000000..64a0e59
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_switch_checked.png
new file mode 100644
index 0000000..cf3beea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_tabhost.png
new file mode 100644
index 0000000..462e9d3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_textview.png
new file mode 100644
index 0000000..bbb3acf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_timepicker.png
new file mode 100644
index 0000000..22805ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_toggle_button.png
new file mode 100644
index 0000000..49ce08d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
new file mode 100644
index 0000000..9d240f3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_zoomcontrols.png
new file mode 100644
index 0000000..5763406
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_light_edittext.png
new file mode 100644
index 0000000..4356dd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_alertdialog_list.png
new file mode 100644
index 0000000..19843c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_alertdialog_multichoice.png
new file mode 100644
index 0000000..45a8da0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_alertdialog_onebutton.png
new file mode 100644
index 0000000..7382c6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_alertdialog_singlechoice.png
new file mode 100644
index 0000000..c1e7f2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_alertdialog_threebuttons.png
new file mode 100644
index 0000000..2c65d33
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_alertdialog_twobuttons.png
new file mode 100644
index 0000000..d8c1bc4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_button.png
new file mode 100644
index 0000000..8c096ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_button_pressed.png
new file mode 100644
index 0000000..5c4d96c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_calendar_view.png
new file mode 100644
index 0000000..e606cc8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_checkbox.png
new file mode 100644
index 0000000..6fd2ba2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..f52884c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_chronometer.png
new file mode 100644
index 0000000..5ede793
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..2d1e63f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..914e522
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..a6f2f65
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..2cf79d0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_green_light.png
new file mode 100644
index 0000000..508a96e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..4a0157f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..0bdb9be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_purple.png
new file mode 100644
index 0000000..97071db
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..dbcef9d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_red_light.png
new file mode 100644
index 0000000..c60546f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_edittext.png
new file mode 100644
index 0000000..4356dd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_alertdialog_list.png
new file mode 100644
index 0000000..19843c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_alertdialog_multichoice.png
new file mode 100644
index 0000000..45a8da0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_alertdialog_onebutton.png
new file mode 100644
index 0000000..7382c6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_alertdialog_singlechoice.png
new file mode 100644
index 0000000..c1e7f2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_alertdialog_threebuttons.png
new file mode 100644
index 0000000..2c65d33
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_alertdialog_twobuttons.png
new file mode 100644
index 0000000..d8c1bc4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_button.png
new file mode 100644
index 0000000..8c096ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_button_pressed.png
new file mode 100644
index 0000000..5c4d96c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..e606cc8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_checkbox.png
new file mode 100644
index 0000000..6fd2ba2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
new file mode 100644
index 0000000..f52884c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_chronometer.png
new file mode 100644
index 0000000..5ede793
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
new file mode 100644
index 0000000..2d1e63f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
new file mode 100644
index 0000000..914e522
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
new file mode 100644
index 0000000..a6f2f65
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
new file mode 100644
index 0000000..2cf79d0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_green_light.png
new file mode 100644
index 0000000..508a96e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
new file mode 100644
index 0000000..4a0157f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
new file mode 100644
index 0000000..0bdb9be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_purple.png
new file mode 100644
index 0000000..97071db
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
new file mode 100644
index 0000000..dbcef9d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_red_light.png
new file mode 100644
index 0000000..c60546f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_edittext.png
new file mode 100644
index 0000000..4356dd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
new file mode 100644
index 0000000..8a2248d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
new file mode 100644
index 0000000..069a67e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
new file mode 100644
index 0000000..d7fa13d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressdialog_horizontal.png
new file mode 100644
index 0000000..cd50fe6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_radio_button.png
new file mode 100644
index 0000000..8d0bd4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
new file mode 100644
index 0000000..26f65ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
new file mode 100644
index 0000000..dad7afc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
new file mode 100644
index 0000000..d8e8dfb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
new file mode 100644
index 0000000..b7ed0fd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
new file mode 100644
index 0000000..eb69c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
new file mode 100644
index 0000000..8a38f74
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..1ad6086
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
new file mode 100644
index 0000000..1dd698f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
new file mode 100644
index 0000000..1a64fe9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_searchview.png
new file mode 100644
index 0000000..4fa916a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_searchview_query.png
new file mode 100644
index 0000000..bf3c4c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
new file mode 100644
index 0000000..da47cb1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
new file mode 100644
index 0000000..bbdaa9c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
new file mode 100644
index 0000000..b89ea7d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
new file mode 100644
index 0000000..e8320ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_spinner.png
new file mode 100644
index 0000000..d7f357a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_switch.png
new file mode 100644
index 0000000..64a0e59
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_switch_checked.png
new file mode 100644
index 0000000..cf3beea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_tabhost.png
new file mode 100644
index 0000000..462e9d3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_textview.png
new file mode 100644
index 0000000..bbb3acf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_timepicker.png
new file mode 100644
index 0000000..22805ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_toggle_button.png
new file mode 100644
index 0000000..49ce08d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
new file mode 100644
index 0000000..9d240f3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_zoomcontrols.png
new file mode 100644
index 0000000..5763406
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..8a2248d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..069a67e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..d7fa13d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressdialog_horizontal.png
new file mode 100644
index 0000000..cd50fe6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_radio_button.png
new file mode 100644
index 0000000..8d0bd4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..26f65ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..dad7afc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..d8e8dfb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..b7ed0fd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..eb69c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..8a38f74
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..1ad6086
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..1dd698f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..1a64fe9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_searchview.png
new file mode 100644
index 0000000..4fa916a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_searchview_query.png
new file mode 100644
index 0000000..bf3c4c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..da47cb1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..bbdaa9c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..b89ea7d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..e8320ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_spinner.png
new file mode 100644
index 0000000..d7f357a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_switch.png
new file mode 100644
index 0000000..64a0e59
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_switch_checked.png
new file mode 100644
index 0000000..cf3beea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_tabhost.png
new file mode 100644
index 0000000..462e9d3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_textview.png
new file mode 100644
index 0000000..bbb3acf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_timepicker.png
new file mode 100644
index 0000000..22805ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_toggle_button.png
new file mode 100644
index 0000000..49ce08d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..9d240f3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_zoomcontrols.png
new file mode 100644
index 0000000..5763406
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_alertdialog_list.png
new file mode 100644
index 0000000..19843c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_alertdialog_multichoice.png
new file mode 100644
index 0000000..45a8da0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_alertdialog_onebutton.png
new file mode 100644
index 0000000..7382c6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_alertdialog_singlechoice.png
new file mode 100644
index 0000000..c1e7f2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_alertdialog_threebuttons.png
new file mode 100644
index 0000000..2c65d33
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_alertdialog_twobuttons.png
new file mode 100644
index 0000000..d8c1bc4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_button.png
new file mode 100644
index 0000000..8c096ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_button_pressed.png
new file mode 100644
index 0000000..5c4d96c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_calendar_view.png
new file mode 100644
index 0000000..e606cc8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_checkbox.png
new file mode 100644
index 0000000..6fd2ba2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_checkbox_checked.png
new file mode 100644
index 0000000..f52884c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_chronometer.png
new file mode 100644
index 0000000..5ede793
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_blue_bright.png
new file mode 100644
index 0000000..2d1e63f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_blue_dark.png
new file mode 100644
index 0000000..914e522
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_blue_light.png
new file mode 100644
index 0000000..a6f2f65
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_green_dark.png
new file mode 100644
index 0000000..2cf79d0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_green_light.png
new file mode 100644
index 0000000..508a96e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_orange_dark.png
new file mode 100644
index 0000000..4a0157f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_orange_light.png
new file mode 100644
index 0000000..0bdb9be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_purple.png
new file mode 100644
index 0000000..97071db
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_red_dark.png
new file mode 100644
index 0000000..dbcef9d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_red_light.png
new file mode 100644
index 0000000..c60546f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_edittext.png
new file mode 100644
index 0000000..4356dd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_horizontal_0.png
new file mode 100644
index 0000000..8a2248d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_horizontal_100.png
new file mode 100644
index 0000000..069a67e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_horizontal_50.png
new file mode 100644
index 0000000..d7fa13d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressdialog_horizontal.png
new file mode 100644
index 0000000..cd50fe6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_radio_button.png
new file mode 100644
index 0000000..8d0bd4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_radio_button_checked.png
new file mode 100644
index 0000000..26f65ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_radiogroup_horizontal.png
new file mode 100644
index 0000000..dad7afc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_radiogroup_vertical.png
new file mode 100644
index 0000000..d8e8dfb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_0.png
new file mode 100644
index 0000000..b7ed0fd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_0_pressed.png
new file mode 100644
index 0000000..eb69c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_2point5.png
new file mode 100644
index 0000000..8a38f74
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..1ad6086
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_5.png
new file mode 100644
index 0000000..1dd698f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_5_pressed.png
new file mode 100644
index 0000000..1a64fe9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_searchview.png
new file mode 100644
index 0000000..4fa916a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_searchview_query.png
new file mode 100644
index 0000000..bf3c4c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_searchview_query_hint.png
new file mode 100644
index 0000000..da47cb1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_seekbar_0.png
new file mode 100644
index 0000000..bbdaa9c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_seekbar_100.png
new file mode 100644
index 0000000..b89ea7d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_seekbar_50.png
new file mode 100644
index 0000000..e8320ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_spinner.png
new file mode 100644
index 0000000..d7f357a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_switch.png
new file mode 100644
index 0000000..64a0e59
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_switch_checked.png
new file mode 100644
index 0000000..cf3beea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_tabhost.png
new file mode 100644
index 0000000..462e9d3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_textview.png
new file mode 100644
index 0000000..bbb3acf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_timepicker.png
new file mode 100644
index 0000000..22805ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_toggle_button.png
new file mode 100644
index 0000000..49ce08d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_toggle_button_checked.png
new file mode 100644
index 0000000..9d240f3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_zoomcontrols.png
new file mode 100644
index 0000000..5763406
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_horizontal_0.png
new file mode 100644
index 0000000..8a2248d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_horizontal_100.png
new file mode 100644
index 0000000..069a67e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_horizontal_50.png
new file mode 100644
index 0000000..d7fa13d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_progressdialog_horizontal.png
new file mode 100644
index 0000000..cd50fe6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_radio_button.png
new file mode 100644
index 0000000..8d0bd4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_radio_button_checked.png
new file mode 100644
index 0000000..26f65ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_radiogroup_horizontal.png
new file mode 100644
index 0000000..dad7afc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_light_radiogroup_vertical.png
new file mode 100644
index 0000000..d8e8dfb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_0.png
new file mode 100644
index 0000000..b7ed0fd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_0_pressed.png
new file mode 100644
index 0000000..eb69c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_2point5.png
new file mode 100644
index 0000000..8a38f74
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..1ad6086
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_5.png
new file mode 100644
index 0000000..1dd698f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_5_pressed.png
new file mode 100644
index 0000000..1a64fe9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_searchview.png
new file mode 100644
index 0000000..4fa916a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_light_searchview_query.png
new file mode 100644
index 0000000..bf3c4c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_light_searchview_query_hint.png
new file mode 100644
index 0000000..da47cb1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_seekbar_0.png
new file mode 100644
index 0000000..bbdaa9c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_seekbar_100.png
new file mode 100644
index 0000000..b89ea7d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_seekbar_50.png
new file mode 100644
index 0000000..e8320ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_light_spinner.png
new file mode 100644
index 0000000..d7f357a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_light_switch.png
new file mode 100644
index 0000000..64a0e59
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_switch_checked.png
new file mode 100644
index 0000000..cf3beea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_light_tabhost.png
new file mode 100644
index 0000000..462e9d3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_textview.png
new file mode 100644
index 0000000..bbb3acf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_light_timepicker.png
new file mode 100644
index 0000000..22805ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_toggle_button.png
new file mode 100644
index 0000000..49ce08d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_toggle_button_checked.png
new file mode 100644
index 0000000..9d240f3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_light_zoomcontrols.png
new file mode 100644
index 0000000..5763406
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_alertdialog_list.png
new file mode 100644
index 0000000..aa074c1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_alertdialog_multichoice.png
new file mode 100644
index 0000000..205b855
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_alertdialog_onebutton.png
new file mode 100644
index 0000000..356c230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_alertdialog_singlechoice.png
new file mode 100644
index 0000000..4d0d20c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_alertdialog_threebuttons.png
new file mode 100644
index 0000000..33d0641
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_alertdialog_twobuttons.png
new file mode 100644
index 0000000..5969402
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_button.png
new file mode 100644
index 0000000..1c65266
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_button_pressed.png
new file mode 100644
index 0000000..797dccc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_calendar_view.png
new file mode 100644
index 0000000..7106a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_checkbox.png
new file mode 100644
index 0000000..97e83b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..88934c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_chronometer.png
new file mode 100644
index 0000000..65af9b3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..2d1e63f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..914e522
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..a6f2f65
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..2cf79d0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_green_light.png
new file mode 100644
index 0000000..508a96e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..4a0157f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..0bdb9be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_purple.png
new file mode 100644
index 0000000..97071db
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..dbcef9d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_red_light.png
new file mode 100644
index 0000000..c60546f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_edittext.png
new file mode 100644
index 0000000..369d7b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_alertdialog_list.png
new file mode 100644
index 0000000..aa074c1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_alertdialog_multichoice.png
new file mode 100644
index 0000000..205b855
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_alertdialog_onebutton.png
new file mode 100644
index 0000000..356c230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_alertdialog_singlechoice.png
new file mode 100644
index 0000000..4d0d20c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_alertdialog_threebuttons.png
new file mode 100644
index 0000000..33d0641
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_alertdialog_twobuttons.png
new file mode 100644
index 0000000..5969402
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_button.png
new file mode 100644
index 0000000..1c65266
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_button_pressed.png
new file mode 100644
index 0000000..797dccc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..7106a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_checkbox.png
new file mode 100644
index 0000000..97e83b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_checkbox_checked.png
new file mode 100644
index 0000000..88934c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_chronometer.png
new file mode 100644
index 0000000..65af9b3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_blue_bright.png
new file mode 100644
index 0000000..2d1e63f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_blue_dark.png
new file mode 100644
index 0000000..914e522
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_blue_light.png
new file mode 100644
index 0000000..a6f2f65
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_green_dark.png
new file mode 100644
index 0000000..2cf79d0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_green_light.png
new file mode 100644
index 0000000..508a96e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_orange_dark.png
new file mode 100644
index 0000000..4a0157f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_orange_light.png
new file mode 100644
index 0000000..0bdb9be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_purple.png
new file mode 100644
index 0000000..97071db
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_red_dark.png
new file mode 100644
index 0000000..dbcef9d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_red_light.png
new file mode 100644
index 0000000..c60546f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_edittext.png
new file mode 100644
index 0000000..369d7b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
new file mode 100644
index 0000000..7923142
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
new file mode 100644
index 0000000..d94e0ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
new file mode 100644
index 0000000..0891a0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressdialog_horizontal.png
new file mode 100644
index 0000000..168b54f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_radio_button.png
new file mode 100644
index 0000000..50c99a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_radio_button_checked.png
new file mode 100644
index 0000000..5959f1b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
new file mode 100644
index 0000000..bfe6918
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
new file mode 100644
index 0000000..5a74bfb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_0.png
new file mode 100644
index 0000000..3ab433c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
new file mode 100644
index 0000000..4dc4b05
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
new file mode 100644
index 0000000..2ca1852
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..84d8b8c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_5.png
new file mode 100644
index 0000000..87c629e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
new file mode 100644
index 0000000..1122d5e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_searchview.png
new file mode 100644
index 0000000..2316e8a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_searchview_query.png
new file mode 100644
index 0000000..1eb04da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
new file mode 100644
index 0000000..bdf014a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_seekbar_0.png
new file mode 100644
index 0000000..b194d4e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_seekbar_100.png
new file mode 100644
index 0000000..b89ea7d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_seekbar_50.png
new file mode 100644
index 0000000..3100469
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_spinner.png
new file mode 100644
index 0000000..9aaac14
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_switch.png
new file mode 100644
index 0000000..38fe4e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_switch_checked.png
new file mode 100644
index 0000000..d85ceaa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_tabhost.png
new file mode 100644
index 0000000..27698b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_textview.png
new file mode 100644
index 0000000..85547e3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_timepicker.png
new file mode 100644
index 0000000..4402c11
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_toggle_button.png
new file mode 100644
index 0000000..e101854
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
new file mode 100644
index 0000000..2daed75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_zoomcontrols.png
new file mode 100644
index 0000000..5763406
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..7923142
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..d94e0ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..0891a0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressdialog_horizontal.png
new file mode 100644
index 0000000..168b54f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_radio_button.png
new file mode 100644
index 0000000..50c99a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..5959f1b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..bfe6918
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..5a74bfb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..3ab433c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..4dc4b05
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..2ca1852
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..84d8b8c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..87c629e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..1122d5e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_searchview.png
new file mode 100644
index 0000000..2316e8a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_searchview_query.png
new file mode 100644
index 0000000..1eb04da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..bdf014a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..b194d4e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..b89ea7d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..3100469
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_spinner.png
new file mode 100644
index 0000000..9aaac14
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_switch.png
new file mode 100644
index 0000000..38fe4e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_switch_checked.png
new file mode 100644
index 0000000..d85ceaa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_tabhost.png
new file mode 100644
index 0000000..27698b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_textview.png
new file mode 100644
index 0000000..85547e3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_timepicker.png
new file mode 100644
index 0000000..4402c11
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_toggle_button.png
new file mode 100644
index 0000000..e101854
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..2daed75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_zoomcontrols.png
new file mode 100644
index 0000000..5763406
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_alertdialog_list.png
new file mode 100644
index 0000000..aa074c1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_alertdialog_multichoice.png
new file mode 100644
index 0000000..205b855
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_alertdialog_onebutton.png
new file mode 100644
index 0000000..356c230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_alertdialog_singlechoice.png
new file mode 100644
index 0000000..4d0d20c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_alertdialog_threebuttons.png
new file mode 100644
index 0000000..33d0641
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_alertdialog_twobuttons.png
new file mode 100644
index 0000000..5969402
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_button.png
new file mode 100644
index 0000000..1c65266
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_button_pressed.png
new file mode 100644
index 0000000..797dccc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_calendar_view.png
new file mode 100644
index 0000000..7106a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_checkbox.png
new file mode 100644
index 0000000..97e83b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_checkbox_checked.png
new file mode 100644
index 0000000..88934c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_chronometer.png
new file mode 100644
index 0000000..65af9b3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_color_blue_bright.png
new file mode 100644
index 0000000..2d1e63f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_color_blue_dark.png
new file mode 100644
index 0000000..914e522
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_color_blue_light.png
new file mode 100644
index 0000000..a6f2f65
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_color_green_dark.png
new file mode 100644
index 0000000..2cf79d0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_color_green_light.png
new file mode 100644
index 0000000..508a96e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_color_orange_dark.png
new file mode 100644
index 0000000..4a0157f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_color_orange_light.png
new file mode 100644
index 0000000..0bdb9be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_color_purple.png
new file mode 100644
index 0000000..97071db
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_color_red_dark.png
new file mode 100644
index 0000000..dbcef9d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_color_red_light.png
new file mode 100644
index 0000000..c60546f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_edittext.png
new file mode 100644
index 0000000..369d7b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_horizontal_0.png
new file mode 100644
index 0000000..7923142
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_horizontal_100.png
new file mode 100644
index 0000000..d94e0ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_horizontal_50.png
new file mode 100644
index 0000000..0891a0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_progressdialog_horizontal.png
new file mode 100644
index 0000000..168b54f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_radio_button.png
new file mode 100644
index 0000000..50c99a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_radio_button_checked.png
new file mode 100644
index 0000000..5959f1b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_radiogroup_horizontal.png
new file mode 100644
index 0000000..bfe6918
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_radiogroup_vertical.png
new file mode 100644
index 0000000..5a74bfb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_0.png
new file mode 100644
index 0000000..3ab433c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_0_pressed.png
new file mode 100644
index 0000000..4dc4b05
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_2point5.png
new file mode 100644
index 0000000..2ca1852
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..84d8b8c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_5.png
new file mode 100644
index 0000000..87c629e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_5_pressed.png
new file mode 100644
index 0000000..1122d5e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_searchview.png
new file mode 100644
index 0000000..2316e8a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_searchview_query.png
new file mode 100644
index 0000000..1eb04da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_searchview_query_hint.png
new file mode 100644
index 0000000..bdf014a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_seekbar_0.png
new file mode 100644
index 0000000..b194d4e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_seekbar_100.png
new file mode 100644
index 0000000..b89ea7d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_seekbar_50.png
new file mode 100644
index 0000000..3100469
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_spinner.png
new file mode 100644
index 0000000..9aaac14
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_switch.png
new file mode 100644
index 0000000..38fe4e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_switch_checked.png
new file mode 100644
index 0000000..d85ceaa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_tabhost.png
new file mode 100644
index 0000000..27698b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_textview.png
new file mode 100644
index 0000000..85547e3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_timepicker.png
new file mode 100644
index 0000000..4402c11
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_toggle_button.png
new file mode 100644
index 0000000..e101854
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_toggle_button_checked.png
new file mode 100644
index 0000000..2daed75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_zoomcontrols.png
new file mode 100644
index 0000000..5763406
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_progressbar_horizontal_0.png
new file mode 100644
index 0000000..7923142
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_progressbar_horizontal_100.png
new file mode 100644
index 0000000..d94e0ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_progressbar_horizontal_50.png
new file mode 100644
index 0000000..0891a0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_progressdialog_horizontal.png
new file mode 100644
index 0000000..168b54f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_radio_button.png
new file mode 100644
index 0000000..50c99a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_radio_button_checked.png
new file mode 100644
index 0000000..5959f1b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_radiogroup_horizontal.png
new file mode 100644
index 0000000..bfe6918
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_radiogroup_vertical.png
new file mode 100644
index 0000000..5a74bfb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_0.png
new file mode 100644
index 0000000..3ab433c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_0_pressed.png
new file mode 100644
index 0000000..4dc4b05
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_2point5.png
new file mode 100644
index 0000000..2ca1852
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..84d8b8c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_5.png
new file mode 100644
index 0000000..87c629e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_5_pressed.png
new file mode 100644
index 0000000..1122d5e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_searchview.png
new file mode 100644
index 0000000..2316e8a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_searchview_query.png
new file mode 100644
index 0000000..1eb04da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_searchview_query_hint.png
new file mode 100644
index 0000000..bdf014a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_seekbar_0.png
new file mode 100644
index 0000000..b194d4e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_seekbar_100.png
new file mode 100644
index 0000000..b89ea7d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_seekbar_50.png
new file mode 100644
index 0000000..3100469
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_spinner.png
new file mode 100644
index 0000000..9aaac14
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_switch.png
new file mode 100644
index 0000000..38fe4e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_switch_checked.png
new file mode 100644
index 0000000..d85ceaa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_tabhost.png
new file mode 100644
index 0000000..27698b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_textview.png
new file mode 100644
index 0000000..85547e3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_timepicker.png
new file mode 100644
index 0000000..4402c11
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_toggle_button.png
new file mode 100644
index 0000000..e101854
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_toggle_button_checked.png
new file mode 100644
index 0000000..2daed75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_alertdialog_list.png
new file mode 100644
index 0000000..aa074c1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_alertdialog_multichoice.png
new file mode 100644
index 0000000..205b855
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_alertdialog_onebutton.png
new file mode 100644
index 0000000..356c230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_alertdialog_singlechoice.png
new file mode 100644
index 0000000..4d0d20c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_alertdialog_threebuttons.png
new file mode 100644
index 0000000..33d0641
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_alertdialog_twobuttons.png
new file mode 100644
index 0000000..5969402
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_button.png
new file mode 100644
index 0000000..1c65266
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_button_pressed.png
new file mode 100644
index 0000000..797dccc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_calendar_view.png
new file mode 100644
index 0000000..7106a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_checkbox.png
new file mode 100644
index 0000000..97e83b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_checkbox_checked.png
new file mode 100644
index 0000000..88934c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_chronometer.png
new file mode 100644
index 0000000..65af9b3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_blue_bright.png
new file mode 100644
index 0000000..2d1e63f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_blue_dark.png
new file mode 100644
index 0000000..914e522
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_blue_light.png
new file mode 100644
index 0000000..a6f2f65
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_green_dark.png
new file mode 100644
index 0000000..2cf79d0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_green_light.png
new file mode 100644
index 0000000..508a96e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_orange_dark.png
new file mode 100644
index 0000000..4a0157f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_orange_light.png
new file mode 100644
index 0000000..0bdb9be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_purple.png
new file mode 100644
index 0000000..97071db
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_red_dark.png
new file mode 100644
index 0000000..dbcef9d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_red_light.png
new file mode 100644
index 0000000..c60546f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_edittext.png
new file mode 100644
index 0000000..369d7b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_alertdialog_list.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_alertdialog_list.png
new file mode 100644
index 0000000..aa074c1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_alertdialog_multichoice.png
new file mode 100644
index 0000000..205b855
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_alertdialog_onebutton.png
new file mode 100644
index 0000000..356c230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_alertdialog_singlechoice.png
new file mode 100644
index 0000000..4d0d20c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_alertdialog_threebuttons.png
new file mode 100644
index 0000000..33d0641
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_alertdialog_twobuttons.png
new file mode 100644
index 0000000..5969402
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_button.png
new file mode 100644
index 0000000..1c65266
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_button_pressed.png
new file mode 100644
index 0000000..797dccc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_calendar_view.png
new file mode 100644
index 0000000..7106a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_checkbox.png
new file mode 100644
index 0000000..97e83b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_checkbox_checked.png
new file mode 100644
index 0000000..88934c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_chronometer.png
new file mode 100644
index 0000000..65af9b3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_blue_bright.png
new file mode 100644
index 0000000..2d1e63f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_blue_dark.png
new file mode 100644
index 0000000..914e522
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_blue_light.png
new file mode 100644
index 0000000..a6f2f65
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_green_dark.png
new file mode 100644
index 0000000..2cf79d0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_green_light.png
new file mode 100644
index 0000000..508a96e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_orange_dark.png
new file mode 100644
index 0000000..4a0157f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_orange_light.png
new file mode 100644
index 0000000..0bdb9be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_purple.png
new file mode 100644
index 0000000..97071db
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_red_dark.png
new file mode 100644
index 0000000..dbcef9d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_red_light.png
new file mode 100644
index 0000000..c60546f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_edittext.png
new file mode 100644
index 0000000..369d7b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..7923142
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..d94e0ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..0891a0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressdialog_horizontal.png
new file mode 100644
index 0000000..168b54f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_radio_button.png
new file mode 100644
index 0000000..50c99a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_radio_button_checked.png
new file mode 100644
index 0000000..5959f1b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
new file mode 100644
index 0000000..bfe6918
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
new file mode 100644
index 0000000..5a74bfb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_0.png
new file mode 100644
index 0000000..3ab433c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..4dc4b05
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
new file mode 100644
index 0000000..2ca1852
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..84d8b8c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_5.png
new file mode 100644
index 0000000..87c629e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..1122d5e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_searchview.png
new file mode 100644
index 0000000..2316e8a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_searchview_query.png
new file mode 100644
index 0000000..1eb04da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
new file mode 100644
index 0000000..bdf014a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_seekbar_0.png
new file mode 100644
index 0000000..b194d4e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_seekbar_100.png
new file mode 100644
index 0000000..b89ea7d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_seekbar_50.png
new file mode 100644
index 0000000..3100469
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_spinner.png
new file mode 100644
index 0000000..9aaac14
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_switch.png
new file mode 100644
index 0000000..38fe4e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_switch_checked.png
new file mode 100644
index 0000000..d85ceaa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_tabhost.png
new file mode 100644
index 0000000..27698b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_textview.png
new file mode 100644
index 0000000..85547e3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_timepicker.png
new file mode 100644
index 0000000..4402c11
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_toggle_button.png
new file mode 100644
index 0000000..e101854
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
new file mode 100644
index 0000000..2daed75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_zoomcontrols.png
new file mode 100644
index 0000000..5763406
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_horizontal_0.png
new file mode 100644
index 0000000..7923142
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_horizontal_100.png
new file mode 100644
index 0000000..d94e0ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_horizontal_50.png
new file mode 100644
index 0000000..0891a0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressdialog_horizontal.png
new file mode 100644
index 0000000..168b54f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_radio_button.png
new file mode 100644
index 0000000..50c99a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_radio_button_checked.png
new file mode 100644
index 0000000..5959f1b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_radiogroup_horizontal.png
new file mode 100644
index 0000000..bfe6918
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_radiogroup_vertical.png
new file mode 100644
index 0000000..5a74bfb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_0.png
new file mode 100644
index 0000000..3ab433c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_0_pressed.png
new file mode 100644
index 0000000..4dc4b05
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_2point5.png
new file mode 100644
index 0000000..2ca1852
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..84d8b8c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_5.png
new file mode 100644
index 0000000..87c629e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_5_pressed.png
new file mode 100644
index 0000000..1122d5e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_searchview.png
new file mode 100644
index 0000000..2316e8a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_searchview_query.png
new file mode 100644
index 0000000..1eb04da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_searchview_query_hint.png
new file mode 100644
index 0000000..bdf014a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_seekbar_0.png
new file mode 100644
index 0000000..b194d4e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_seekbar_100.png
new file mode 100644
index 0000000..b89ea7d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_seekbar_50.png
new file mode 100644
index 0000000..3100469
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_spinner.png
new file mode 100644
index 0000000..9aaac14
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_switch.png
new file mode 100644
index 0000000..38fe4e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_switch_checked.png
new file mode 100644
index 0000000..d85ceaa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_tabhost.png
new file mode 100644
index 0000000..27698b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_textview.png
new file mode 100644
index 0000000..85547e3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_timepicker.png
new file mode 100644
index 0000000..4402c11
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_toggle_button.png
new file mode 100644
index 0000000..e101854
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_toggle_button_checked.png
new file mode 100644
index 0000000..2daed75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_zoomcontrols.png
new file mode 100644
index 0000000..5763406
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_zoomcontrols.png b/tests/tests/holo/res/drawable-hdpi/holo_zoomcontrols.png
new file mode 100644
index 0000000..5763406
--- /dev/null
+++ b/tests/tests/holo/res/drawable-hdpi/holo_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_alertdialog_list.png b/tests/tests/holo/res/drawable-large-mdpi/holo_alertdialog_list.png
new file mode 100644
index 0000000..1d9ee47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_alertdialog_multichoice.png
new file mode 100644
index 0000000..31434c6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-large-mdpi/holo_alertdialog_onebutton.png
new file mode 100644
index 0000000..517a575
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_alertdialog_singlechoice.png
new file mode 100644
index 0000000..3938fa9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_alertdialog_threebuttons.png
new file mode 100644
index 0000000..a3f6005
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_alertdialog_twobuttons.png
new file mode 100644
index 0000000..ae3bbb0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_button.png
new file mode 100644
index 0000000..6d81450
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_button_pressed.png
new file mode 100644
index 0000000..69f8061
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-large-mdpi/holo_calendar_view.png
new file mode 100644
index 0000000..50d00ab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-large-mdpi/holo_checkbox.png
new file mode 100644
index 0000000..63dc6ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_checkbox_checked.png
new file mode 100644
index 0000000..a0f737c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-large-mdpi/holo_chronometer.png
new file mode 100644
index 0000000..a4e7093
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-large-mdpi/holo_color_blue_bright.png
new file mode 100644
index 0000000..fe1bdd7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_color_blue_dark.png
new file mode 100644
index 0000000..f3f0640
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_color_blue_light.png
new file mode 100644
index 0000000..285d925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_color_green_dark.png
new file mode 100644
index 0000000..cfbbdd4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_color_green_light.png
new file mode 100644
index 0000000..a691827
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_color_orange_dark.png
new file mode 100644
index 0000000..3f0e99a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_color_orange_light.png
new file mode 100644
index 0000000..f54fd64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-large-mdpi/holo_color_purple.png
new file mode 100644
index 0000000..15c9494
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_color_red_dark.png
new file mode 100644
index 0000000..de3385d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_color_red_light.png
new file mode 100644
index 0000000..dde4043
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_alertdialog_list.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_alertdialog_list.png
new file mode 100644
index 0000000..1d9ee47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_alertdialog_multichoice.png
new file mode 100644
index 0000000..31434c6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_alertdialog_onebutton.png
new file mode 100644
index 0000000..517a575
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_alertdialog_singlechoice.png
new file mode 100644
index 0000000..3938fa9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_alertdialog_threebuttons.png
new file mode 100644
index 0000000..a3f6005
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_alertdialog_twobuttons.png
new file mode 100644
index 0000000..ae3bbb0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_button.png
new file mode 100644
index 0000000..6d81450
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_button_pressed.png
new file mode 100644
index 0000000..69f8061
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_calendar_view.png
new file mode 100644
index 0000000..50d00ab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_checkbox.png
new file mode 100644
index 0000000..63dc6ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_checkbox_checked.png
new file mode 100644
index 0000000..a0f737c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_chronometer.png
new file mode 100644
index 0000000..a4e7093
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_color_blue_bright.png
new file mode 100644
index 0000000..fe1bdd7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_color_blue_dark.png
new file mode 100644
index 0000000..f3f0640
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_color_blue_light.png
new file mode 100644
index 0000000..285d925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_color_green_dark.png
new file mode 100644
index 0000000..cfbbdd4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_color_green_light.png
new file mode 100644
index 0000000..a691827
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_color_orange_dark.png
new file mode 100644
index 0000000..3f0e99a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_color_orange_light.png
new file mode 100644
index 0000000..f54fd64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_color_purple.png
new file mode 100644
index 0000000..15c9494
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_color_red_dark.png
new file mode 100644
index 0000000..de3385d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_color_red_light.png
new file mode 100644
index 0000000..dde4043
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_edittext.png
new file mode 100644
index 0000000..6fabb7e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_alertdialog_list.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_alertdialog_list.png
new file mode 100644
index 0000000..1d9ee47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_alertdialog_multichoice.png
new file mode 100644
index 0000000..31434c6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_alertdialog_onebutton.png
new file mode 100644
index 0000000..517a575
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_alertdialog_singlechoice.png
new file mode 100644
index 0000000..3938fa9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_alertdialog_threebuttons.png
new file mode 100644
index 0000000..a3f6005
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_alertdialog_twobuttons.png
new file mode 100644
index 0000000..ae3bbb0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_button.png
new file mode 100644
index 0000000..6d81450
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_button_pressed.png
new file mode 100644
index 0000000..69f8061
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..50d00ab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_checkbox.png
new file mode 100644
index 0000000..63dc6ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..a0f737c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_chronometer.png
new file mode 100644
index 0000000..a4e7093
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..fe1bdd7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..f3f0640
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_color_blue_light.png
new file mode 100644
index 0000000..285d925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_color_green_dark.png
new file mode 100644
index 0000000..cfbbdd4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_color_green_light.png
new file mode 100644
index 0000000..a691827
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..3f0e99a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_color_orange_light.png
new file mode 100644
index 0000000..f54fd64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_color_purple.png
new file mode 100644
index 0000000..15c9494
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_color_red_dark.png
new file mode 100644
index 0000000..de3385d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_color_red_light.png
new file mode 100644
index 0000000..dde4043
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_edittext.png
new file mode 100644
index 0000000..6fabb7e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..a73db14
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..2813c84
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..d5c65a9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_progressdialog_horizontal.png
new file mode 100644
index 0000000..a0a8f12
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_radio_button.png
new file mode 100644
index 0000000..813b9ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..ca4a1b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..944e7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..e9aecf8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..00a9aab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..06f4070
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..88725b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..303db0c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..f62fa44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..45ade7b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_searchview.png
new file mode 100644
index 0000000..d4ccda7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_searchview_query.png
new file mode 100644
index 0000000..e6e3646
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..df6d421
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_seekbar_0.png
new file mode 100644
index 0000000..6ef0c71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_seekbar_100.png
new file mode 100644
index 0000000..5be0453
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_seekbar_50.png
new file mode 100644
index 0000000..3ba6228
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_spinner.png
new file mode 100644
index 0000000..7b14cc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_switch.png
new file mode 100644
index 0000000..a1beda8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_switch_checked.png
new file mode 100644
index 0000000..a5e17d3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_tabhost.png
new file mode 100644
index 0000000..b5476b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_textview.png
new file mode 100644
index 0000000..1ccf89f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_timepicker.png
new file mode 100644
index 0000000..ead9c27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_toggle_button.png
new file mode 100644
index 0000000..948e1b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..c89fae2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_zoomcontrols.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_zoomcontrols.png
new file mode 100644
index 0000000..7892bcf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_minwidth_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_alertdialog_list.png
new file mode 100644
index 0000000..1d9ee47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_alertdialog_multichoice.png
new file mode 100644
index 0000000..31434c6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_alertdialog_onebutton.png
new file mode 100644
index 0000000..517a575
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_alertdialog_singlechoice.png
new file mode 100644
index 0000000..3938fa9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_alertdialog_threebuttons.png
new file mode 100644
index 0000000..a3f6005
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_alertdialog_twobuttons.png
new file mode 100644
index 0000000..ae3bbb0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_button.png
new file mode 100644
index 0000000..6d81450
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_button_pressed.png
new file mode 100644
index 0000000..69f8061
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..50d00ab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_checkbox.png
new file mode 100644
index 0000000..63dc6ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..a0f737c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_chronometer.png
new file mode 100644
index 0000000..a4e7093
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..fe1bdd7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..f3f0640
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..285d925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..cfbbdd4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_color_green_light.png
new file mode 100644
index 0000000..a691827
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..3f0e99a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..f54fd64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_color_purple.png
new file mode 100644
index 0000000..15c9494
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..de3385d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_color_red_light.png
new file mode 100644
index 0000000..dde4043
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_edittext.png
new file mode 100644
index 0000000..6fabb7e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_alertdialog_list.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_alertdialog_list.png
new file mode 100644
index 0000000..1d9ee47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_alertdialog_multichoice.png
new file mode 100644
index 0000000..31434c6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_alertdialog_onebutton.png
new file mode 100644
index 0000000..517a575
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_alertdialog_singlechoice.png
new file mode 100644
index 0000000..3938fa9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_alertdialog_threebuttons.png
new file mode 100644
index 0000000..a3f6005
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_alertdialog_twobuttons.png
new file mode 100644
index 0000000..ae3bbb0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_button.png
new file mode 100644
index 0000000..6d81450
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
new file mode 100644
index 0000000..69f8061
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..50d00ab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_checkbox.png
new file mode 100644
index 0000000..63dc6ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..a0f737c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_chronometer.png
new file mode 100644
index 0000000..a4e7093
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..fe1bdd7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..f3f0640
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
new file mode 100644
index 0000000..285d925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
new file mode 100644
index 0000000..cfbbdd4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
new file mode 100644
index 0000000..a691827
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..3f0e99a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
new file mode 100644
index 0000000..f54fd64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_color_purple.png
new file mode 100644
index 0000000..15c9494
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
new file mode 100644
index 0000000..de3385d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
new file mode 100644
index 0000000..dde4043
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_edittext.png
new file mode 100644
index 0000000..6fabb7e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..a73db14
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..2813c84
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..d5c65a9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_progressdialog_horizontal.png
new file mode 100644
index 0000000..a0a8f12
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_radio_button.png
new file mode 100644
index 0000000..813b9ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..ca4a1b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..944e7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..e9aecf8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..00a9aab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..06f4070
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..88725b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..303db0c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..f62fa44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..45ade7b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_searchview.png
new file mode 100644
index 0000000..d4ccda7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
new file mode 100644
index 0000000..e6e3646
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..df6d421
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
new file mode 100644
index 0000000..6ef0c71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
new file mode 100644
index 0000000..5be0453
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
new file mode 100644
index 0000000..3ba6228
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_spinner.png
new file mode 100644
index 0000000..7b14cc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_switch.png
new file mode 100644
index 0000000..a1beda8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
new file mode 100644
index 0000000..a5e17d3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_tabhost.png
new file mode 100644
index 0000000..b5476b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_textview.png
new file mode 100644
index 0000000..1ccf89f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_timepicker.png
new file mode 100644
index 0000000..ead9c27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
new file mode 100644
index 0000000..948e1b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..c89fae2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_zoomcontrols.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_zoomcontrols.png
new file mode 100644
index 0000000..7892bcf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_minwidth_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..a73db14
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..2813c84
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..d5c65a9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_progressdialog_horizontal.png
new file mode 100644
index 0000000..a0a8f12
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_radio_button.png
new file mode 100644
index 0000000..813b9ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..ca4a1b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..944e7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..e9aecf8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..00a9aab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..06f4070
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..88725b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..303db0c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..f62fa44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..45ade7b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_searchview.png
new file mode 100644
index 0000000..d4ccda7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_searchview_query.png
new file mode 100644
index 0000000..e6e3646
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..df6d421
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..6ef0c71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..5be0453
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..3ba6228
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_spinner.png
new file mode 100644
index 0000000..7b14cc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_switch.png
new file mode 100644
index 0000000..a1beda8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_switch_checked.png
new file mode 100644
index 0000000..a5e17d3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_tabhost.png
new file mode 100644
index 0000000..b5476b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_textview.png
new file mode 100644
index 0000000..1ccf89f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_timepicker.png
new file mode 100644
index 0000000..ead9c27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_toggle_button.png
new file mode 100644
index 0000000..948e1b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..c89fae2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_zoomcontrols.png
new file mode 100644
index 0000000..7892bcf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_noactionbar_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_progressbar_horizontal_0.png
new file mode 100644
index 0000000..a73db14
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_progressbar_horizontal_100.png
new file mode 100644
index 0000000..2813c84
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_progressbar_horizontal_50.png
new file mode 100644
index 0000000..d5c65a9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_progressdialog_horizontal.png
new file mode 100644
index 0000000..a0a8f12
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_radio_button.png
new file mode 100644
index 0000000..813b9ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_radio_button_checked.png
new file mode 100644
index 0000000..ca4a1b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_radiogroup_horizontal.png
new file mode 100644
index 0000000..944e7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_radiogroup_vertical.png
new file mode 100644
index 0000000..e9aecf8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_ratingbar_0.png
new file mode 100644
index 0000000..00a9aab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_ratingbar_0_pressed.png
new file mode 100644
index 0000000..06f4070
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_ratingbar_2point5.png
new file mode 100644
index 0000000..88725b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..303db0c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_ratingbar_5.png
new file mode 100644
index 0000000..f62fa44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_ratingbar_5_pressed.png
new file mode 100644
index 0000000..45ade7b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_searchview.png
new file mode 100644
index 0000000..d4ccda7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_searchview_query.png
new file mode 100644
index 0000000..e6e3646
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_searchview_query_hint.png
new file mode 100644
index 0000000..df6d421
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_seekbar_0.png
new file mode 100644
index 0000000..6ef0c71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_seekbar_100.png
new file mode 100644
index 0000000..5be0453
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_seekbar_50.png
new file mode 100644
index 0000000..3ba6228
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_spinner.png
new file mode 100644
index 0000000..7b14cc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_switch.png
new file mode 100644
index 0000000..a1beda8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_switch_checked.png
new file mode 100644
index 0000000..a5e17d3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_tabhost.png
new file mode 100644
index 0000000..b5476b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_textview.png
new file mode 100644
index 0000000..1ccf89f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_timepicker.png
new file mode 100644
index 0000000..ead9c27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_toggle_button.png
new file mode 100644
index 0000000..948e1b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_toggle_button_checked.png
new file mode 100644
index 0000000..c89fae2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_zoomcontrols.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_zoomcontrols.png
new file mode 100644
index 0000000..7892bcf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialog_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_alertdialog_list.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_alertdialog_list.png
new file mode 100644
index 0000000..1d9ee47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_alertdialog_multichoice.png
new file mode 100644
index 0000000..31434c6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_alertdialog_onebutton.png
new file mode 100644
index 0000000..517a575
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_alertdialog_singlechoice.png
new file mode 100644
index 0000000..3938fa9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_alertdialog_threebuttons.png
new file mode 100644
index 0000000..a3f6005
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_alertdialog_twobuttons.png
new file mode 100644
index 0000000..ae3bbb0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_button.png
new file mode 100644
index 0000000..6d81450
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_button_pressed.png
new file mode 100644
index 0000000..69f8061
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..50d00ab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_checkbox.png
new file mode 100644
index 0000000..63dc6ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_checkbox_checked.png
new file mode 100644
index 0000000..a0f737c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_chronometer.png
new file mode 100644
index 0000000..a4e7093
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_color_blue_bright.png
new file mode 100644
index 0000000..fe1bdd7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_color_blue_dark.png
new file mode 100644
index 0000000..f3f0640
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_color_blue_light.png
new file mode 100644
index 0000000..285d925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_color_green_dark.png
new file mode 100644
index 0000000..cfbbdd4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_color_green_light.png
new file mode 100644
index 0000000..a691827
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_color_orange_dark.png
new file mode 100644
index 0000000..3f0e99a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_color_orange_light.png
new file mode 100644
index 0000000..f54fd64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_color_purple.png
new file mode 100644
index 0000000..15c9494
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_color_red_dark.png
new file mode 100644
index 0000000..de3385d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_color_red_light.png
new file mode 100644
index 0000000..dde4043
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_edittext.png
new file mode 100644
index 0000000..6fabb7e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_alertdialog_list.png
new file mode 100644
index 0000000..1d9ee47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_alertdialog_multichoice.png
new file mode 100644
index 0000000..31434c6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_alertdialog_onebutton.png
new file mode 100644
index 0000000..517a575
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_alertdialog_singlechoice.png
new file mode 100644
index 0000000..3938fa9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_alertdialog_threebuttons.png
new file mode 100644
index 0000000..a3f6005
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_alertdialog_twobuttons.png
new file mode 100644
index 0000000..ae3bbb0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_button.png
new file mode 100644
index 0000000..6d81450
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
new file mode 100644
index 0000000..69f8061
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..50d00ab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
new file mode 100644
index 0000000..63dc6ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..a0f737c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
new file mode 100644
index 0000000..a4e7093
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..fe1bdd7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..f3f0640
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..285d925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..cfbbdd4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
new file mode 100644
index 0000000..a691827
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..3f0e99a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..f54fd64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
new file mode 100644
index 0000000..15c9494
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..de3385d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
new file mode 100644
index 0000000..dde4043
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_edittext.png
new file mode 100644
index 0000000..6fabb7e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..a73db14
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..2813c84
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..d5c65a9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_progressdialog_horizontal.png
new file mode 100644
index 0000000..a0a8f12
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
new file mode 100644
index 0000000..813b9ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..ca4a1b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..944e7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..e9aecf8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..00a9aab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..06f4070
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..88725b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..303db0c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..f62fa44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..45ade7b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_searchview.png
new file mode 100644
index 0000000..d4ccda7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
new file mode 100644
index 0000000..e6e3646
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..df6d421
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..6ef0c71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..5be0453
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..3ba6228
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_spinner.png
new file mode 100644
index 0000000..7b14cc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_switch.png
new file mode 100644
index 0000000..a1beda8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
new file mode 100644
index 0000000..a5e17d3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
new file mode 100644
index 0000000..b5476b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_textview.png
new file mode 100644
index 0000000..1ccf89f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
new file mode 100644
index 0000000..ead9c27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
new file mode 100644
index 0000000..948e1b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..c89fae2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_zoomcontrols.png
new file mode 100644
index 0000000..7892bcf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_noactionbar_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
new file mode 100644
index 0000000..a73db14
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
new file mode 100644
index 0000000..2813c84
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
new file mode 100644
index 0000000..d5c65a9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_progressdialog_horizontal.png
new file mode 100644
index 0000000..a0a8f12
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_radio_button.png
new file mode 100644
index 0000000..813b9ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_radio_button_checked.png
new file mode 100644
index 0000000..ca4a1b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
new file mode 100644
index 0000000..944e7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_radiogroup_vertical.png
new file mode 100644
index 0000000..e9aecf8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_ratingbar_0.png
new file mode 100644
index 0000000..00a9aab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
new file mode 100644
index 0000000..06f4070
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_ratingbar_2point5.png
new file mode 100644
index 0000000..88725b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..303db0c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_ratingbar_5.png
new file mode 100644
index 0000000..f62fa44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
new file mode 100644
index 0000000..45ade7b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_searchview.png
new file mode 100644
index 0000000..d4ccda7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_searchview_query.png
new file mode 100644
index 0000000..e6e3646
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_searchview_query_hint.png
new file mode 100644
index 0000000..df6d421
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_seekbar_0.png
new file mode 100644
index 0000000..6ef0c71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_seekbar_100.png
new file mode 100644
index 0000000..5be0453
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_seekbar_50.png
new file mode 100644
index 0000000..3ba6228
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_spinner.png
new file mode 100644
index 0000000..7b14cc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_switch.png
new file mode 100644
index 0000000..a1beda8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_switch_checked.png
new file mode 100644
index 0000000..a5e17d3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_tabhost.png
new file mode 100644
index 0000000..b5476b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_textview.png
new file mode 100644
index 0000000..1ccf89f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_timepicker.png
new file mode 100644
index 0000000..ead9c27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_toggle_button.png
new file mode 100644
index 0000000..948e1b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_toggle_button_checked.png
new file mode 100644
index 0000000..c89fae2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_zoomcontrols.png b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_zoomcontrols.png
new file mode 100644
index 0000000..7892bcf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_dialogwhenlarge_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_edittext.png b/tests/tests/holo/res/drawable-large-mdpi/holo_edittext.png
new file mode 100644
index 0000000..6fabb7e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_alertdialog_list.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_alertdialog_list.png
new file mode 100644
index 0000000..83e6db7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_alertdialog_multichoice.png
new file mode 100644
index 0000000..863e8a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_alertdialog_onebutton.png
new file mode 100644
index 0000000..144d7ce
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_alertdialog_singlechoice.png
new file mode 100644
index 0000000..6888f47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_alertdialog_threebuttons.png
new file mode 100644
index 0000000..417b38f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_alertdialog_twobuttons.png
new file mode 100644
index 0000000..66dfa37
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_button.png
new file mode 100644
index 0000000..19124b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_button_pressed.png
new file mode 100644
index 0000000..65dd0e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_calendar_view.png
new file mode 100644
index 0000000..3b86863
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_checkbox.png
new file mode 100644
index 0000000..54949e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_checkbox_checked.png
new file mode 100644
index 0000000..42e2783
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_chronometer.png
new file mode 100644
index 0000000..200e909
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_color_blue_bright.png
new file mode 100644
index 0000000..fe1bdd7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_color_blue_dark.png
new file mode 100644
index 0000000..f3f0640
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_color_blue_light.png
new file mode 100644
index 0000000..285d925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_color_green_dark.png
new file mode 100644
index 0000000..cfbbdd4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_color_green_light.png
new file mode 100644
index 0000000..a691827
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_color_orange_dark.png
new file mode 100644
index 0000000..3f0e99a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_color_orange_light.png
new file mode 100644
index 0000000..f54fd64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_color_purple.png
new file mode 100644
index 0000000..15c9494
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_color_red_dark.png
new file mode 100644
index 0000000..de3385d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_color_red_light.png
new file mode 100644
index 0000000..dde4043
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_edittext.png
new file mode 100644
index 0000000..3e9e9ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_progressbar_horizontal_0.png
new file mode 100644
index 0000000..aa86092
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_progressbar_horizontal_100.png
new file mode 100644
index 0000000..750a89c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_progressbar_horizontal_50.png
new file mode 100644
index 0000000..fc91586
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_progressdialog_horizontal.png
new file mode 100644
index 0000000..f839e45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_radio_button.png
new file mode 100644
index 0000000..c2398a1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_radio_button_checked.png
new file mode 100644
index 0000000..898442f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_radiogroup_horizontal.png
new file mode 100644
index 0000000..6191420
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_radiogroup_vertical.png
new file mode 100644
index 0000000..fa88e6f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_ratingbar_0.png
new file mode 100644
index 0000000..2fabd8a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_ratingbar_0_pressed.png
new file mode 100644
index 0000000..b6812e9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_ratingbar_2point5.png
new file mode 100644
index 0000000..2bebaba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..3530a91
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_ratingbar_5.png
new file mode 100644
index 0000000..51ee230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_ratingbar_5_pressed.png
new file mode 100644
index 0000000..793da54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_searchview.png
new file mode 100644
index 0000000..5a30758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_searchview_query.png
new file mode 100644
index 0000000..7f11808
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_searchview_query_hint.png
new file mode 100644
index 0000000..f1e0f2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_seekbar_0.png
new file mode 100644
index 0000000..6a73d98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_seekbar_100.png
new file mode 100644
index 0000000..5be0453
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_seekbar_50.png
new file mode 100644
index 0000000..881276c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_spinner.png
new file mode 100644
index 0000000..144cd8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_switch.png
new file mode 100644
index 0000000..f3029f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_switch_checked.png
new file mode 100644
index 0000000..2dad98a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_tabhost.png
new file mode 100644
index 0000000..df587bc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_textview.png
new file mode 100644
index 0000000..f5319bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_timepicker.png
new file mode 100644
index 0000000..8ea8c14
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_toggle_button.png
new file mode 100644
index 0000000..6e95a85
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_toggle_button_checked.png
new file mode 100644
index 0000000..bbbe3c6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_zoomcontrols.png b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_zoomcontrols.png
new file mode 100644
index 0000000..7892bcf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_inputmethod_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_alertdialog_list.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_alertdialog_list.png
new file mode 100644
index 0000000..83e6db7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_alertdialog_multichoice.png
new file mode 100644
index 0000000..863e8a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_alertdialog_onebutton.png
new file mode 100644
index 0000000..144d7ce
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_alertdialog_singlechoice.png
new file mode 100644
index 0000000..6888f47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_alertdialog_threebuttons.png
new file mode 100644
index 0000000..417b38f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_alertdialog_twobuttons.png
new file mode 100644
index 0000000..66dfa37
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_button.png
new file mode 100644
index 0000000..19124b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_button_pressed.png
new file mode 100644
index 0000000..65dd0e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_calendar_view.png
new file mode 100644
index 0000000..3b86863
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_checkbox.png
new file mode 100644
index 0000000..54949e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_checkbox_checked.png
new file mode 100644
index 0000000..42e2783
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_chronometer.png
new file mode 100644
index 0000000..200e909
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_color_blue_bright.png
new file mode 100644
index 0000000..fe1bdd7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_color_blue_dark.png
new file mode 100644
index 0000000..f3f0640
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_color_blue_light.png
new file mode 100644
index 0000000..285d925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_color_green_dark.png
new file mode 100644
index 0000000..cfbbdd4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_color_green_light.png
new file mode 100644
index 0000000..a691827
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_color_orange_dark.png
new file mode 100644
index 0000000..3f0e99a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_color_orange_light.png
new file mode 100644
index 0000000..f54fd64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_color_purple.png
new file mode 100644
index 0000000..15c9494
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_color_red_dark.png
new file mode 100644
index 0000000..de3385d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_color_red_light.png
new file mode 100644
index 0000000..dde4043
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_alertdialog_list.png
new file mode 100644
index 0000000..83e6db7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_alertdialog_multichoice.png
new file mode 100644
index 0000000..863e8a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_alertdialog_onebutton.png
new file mode 100644
index 0000000..144d7ce
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_alertdialog_singlechoice.png
new file mode 100644
index 0000000..6888f47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_alertdialog_threebuttons.png
new file mode 100644
index 0000000..417b38f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_alertdialog_twobuttons.png
new file mode 100644
index 0000000..66dfa37
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_button.png
new file mode 100644
index 0000000..19124b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_button_pressed.png
new file mode 100644
index 0000000..65dd0e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_calendar_view.png
new file mode 100644
index 0000000..3b86863
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_checkbox.png
new file mode 100644
index 0000000..54949e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_checkbox_checked.png
new file mode 100644
index 0000000..42e2783
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_chronometer.png
new file mode 100644
index 0000000..200e909
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_color_blue_bright.png
new file mode 100644
index 0000000..fe1bdd7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_color_blue_dark.png
new file mode 100644
index 0000000..f3f0640
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_color_blue_light.png
new file mode 100644
index 0000000..285d925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_color_green_dark.png
new file mode 100644
index 0000000..cfbbdd4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_color_green_light.png
new file mode 100644
index 0000000..a691827
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_color_orange_dark.png
new file mode 100644
index 0000000..3f0e99a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_color_orange_light.png
new file mode 100644
index 0000000..f54fd64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_color_purple.png
new file mode 100644
index 0000000..15c9494
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_color_red_dark.png
new file mode 100644
index 0000000..de3385d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_color_red_light.png
new file mode 100644
index 0000000..dde4043
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_edittext.png
new file mode 100644
index 0000000..3e9e9ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..aa86092
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..750a89c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..fc91586
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_progressdialog_horizontal.png
new file mode 100644
index 0000000..f839e45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_radio_button.png
new file mode 100644
index 0000000..c2398a1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_radio_button_checked.png
new file mode 100644
index 0000000..898442f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..6191420
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..fa88e6f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_ratingbar_0.png
new file mode 100644
index 0000000..2fabd8a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..b6812e9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..2bebaba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..3530a91
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_ratingbar_5.png
new file mode 100644
index 0000000..51ee230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..793da54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_searchview.png
new file mode 100644
index 0000000..5a30758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_searchview_query.png
new file mode 100644
index 0000000..7f11808
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..f1e0f2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_seekbar_0.png
new file mode 100644
index 0000000..6a73d98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_seekbar_100.png
new file mode 100644
index 0000000..5be0453
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_seekbar_50.png
new file mode 100644
index 0000000..881276c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_spinner.png
new file mode 100644
index 0000000..144cd8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_switch.png
new file mode 100644
index 0000000..f3029f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_switch_checked.png
new file mode 100644
index 0000000..2dad98a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_tabhost.png
new file mode 100644
index 0000000..df587bc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_textview.png
new file mode 100644
index 0000000..f5319bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_timepicker.png
new file mode 100644
index 0000000..8ea8c14
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_toggle_button.png
new file mode 100644
index 0000000..6e95a85
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..bbbe3c6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_zoomcontrols.png
new file mode 100644
index 0000000..7892bcf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_darkactionbar_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_alertdialog_list.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_alertdialog_list.png
new file mode 100644
index 0000000..83e6db7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_alertdialog_multichoice.png
new file mode 100644
index 0000000..863e8a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_alertdialog_onebutton.png
new file mode 100644
index 0000000..144d7ce
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_alertdialog_singlechoice.png
new file mode 100644
index 0000000..6888f47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_alertdialog_threebuttons.png
new file mode 100644
index 0000000..417b38f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_alertdialog_twobuttons.png
new file mode 100644
index 0000000..66dfa37
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_button.png
new file mode 100644
index 0000000..19124b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_button_pressed.png
new file mode 100644
index 0000000..65dd0e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_calendar_view.png
new file mode 100644
index 0000000..3b86863
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_checkbox.png
new file mode 100644
index 0000000..54949e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_checkbox_checked.png
new file mode 100644
index 0000000..42e2783
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_chronometer.png
new file mode 100644
index 0000000..200e909
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_color_blue_bright.png
new file mode 100644
index 0000000..fe1bdd7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_color_blue_dark.png
new file mode 100644
index 0000000..f3f0640
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_color_blue_light.png
new file mode 100644
index 0000000..285d925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_color_green_dark.png
new file mode 100644
index 0000000..cfbbdd4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_color_green_light.png
new file mode 100644
index 0000000..a691827
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_color_orange_dark.png
new file mode 100644
index 0000000..3f0e99a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_color_orange_light.png
new file mode 100644
index 0000000..f54fd64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_color_purple.png
new file mode 100644
index 0000000..15c9494
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_color_red_dark.png
new file mode 100644
index 0000000..de3385d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_color_red_light.png
new file mode 100644
index 0000000..dde4043
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_edittext.png
new file mode 100644
index 0000000..3e9e9ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_alertdialog_list.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_alertdialog_list.png
new file mode 100644
index 0000000..83e6db7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_alertdialog_multichoice.png
new file mode 100644
index 0000000..863e8a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_alertdialog_onebutton.png
new file mode 100644
index 0000000..144d7ce
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_alertdialog_singlechoice.png
new file mode 100644
index 0000000..6888f47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_alertdialog_threebuttons.png
new file mode 100644
index 0000000..417b38f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_alertdialog_twobuttons.png
new file mode 100644
index 0000000..66dfa37
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_button.png
new file mode 100644
index 0000000..19124b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_button_pressed.png
new file mode 100644
index 0000000..65dd0e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..3b86863
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_checkbox.png
new file mode 100644
index 0000000..54949e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..42e2783
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_chronometer.png
new file mode 100644
index 0000000..200e909
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..fe1bdd7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..f3f0640
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_color_blue_light.png
new file mode 100644
index 0000000..285d925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_color_green_dark.png
new file mode 100644
index 0000000..cfbbdd4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_color_green_light.png
new file mode 100644
index 0000000..a691827
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..3f0e99a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_color_orange_light.png
new file mode 100644
index 0000000..f54fd64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_color_purple.png
new file mode 100644
index 0000000..15c9494
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_color_red_dark.png
new file mode 100644
index 0000000..de3385d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_color_red_light.png
new file mode 100644
index 0000000..dde4043
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_edittext.png
new file mode 100644
index 0000000..3e9e9ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..aa86092
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..750a89c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..fc91586
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_progressdialog_horizontal.png
new file mode 100644
index 0000000..f839e45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_radio_button.png
new file mode 100644
index 0000000..c2398a1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..898442f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..6191420
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..fa88e6f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..2fabd8a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..b6812e9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..2bebaba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..3530a91
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..51ee230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..793da54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_searchview.png
new file mode 100644
index 0000000..5a30758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_searchview_query.png
new file mode 100644
index 0000000..7f11808
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..f1e0f2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_seekbar_0.png
new file mode 100644
index 0000000..6a73d98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_seekbar_100.png
new file mode 100644
index 0000000..5be0453
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_seekbar_50.png
new file mode 100644
index 0000000..881276c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_spinner.png
new file mode 100644
index 0000000..144cd8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_switch.png
new file mode 100644
index 0000000..f3029f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_switch_checked.png
new file mode 100644
index 0000000..2dad98a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_tabhost.png
new file mode 100644
index 0000000..df587bc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_textview.png
new file mode 100644
index 0000000..f5319bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_timepicker.png
new file mode 100644
index 0000000..8ea8c14
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_toggle_button.png
new file mode 100644
index 0000000..6e95a85
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..bbbe3c6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_zoomcontrols.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_zoomcontrols.png
new file mode 100644
index 0000000..7892bcf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_minwidth_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_alertdialog_list.png
new file mode 100644
index 0000000..83e6db7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_alertdialog_multichoice.png
new file mode 100644
index 0000000..863e8a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_alertdialog_onebutton.png
new file mode 100644
index 0000000..144d7ce
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_alertdialog_singlechoice.png
new file mode 100644
index 0000000..6888f47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_alertdialog_threebuttons.png
new file mode 100644
index 0000000..417b38f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_alertdialog_twobuttons.png
new file mode 100644
index 0000000..66dfa37
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_button.png
new file mode 100644
index 0000000..19124b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_button_pressed.png
new file mode 100644
index 0000000..65dd0e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..3b86863
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_checkbox.png
new file mode 100644
index 0000000..54949e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..42e2783
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_chronometer.png
new file mode 100644
index 0000000..200e909
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..fe1bdd7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..f3f0640
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..285d925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..cfbbdd4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_color_green_light.png
new file mode 100644
index 0000000..a691827
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..3f0e99a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..f54fd64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_color_purple.png
new file mode 100644
index 0000000..15c9494
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..de3385d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_color_red_light.png
new file mode 100644
index 0000000..dde4043
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_edittext.png
new file mode 100644
index 0000000..3e9e9ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_list.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_list.png
new file mode 100644
index 0000000..83e6db7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_multichoice.png
new file mode 100644
index 0000000..863e8a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_onebutton.png
new file mode 100644
index 0000000..144d7ce
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_singlechoice.png
new file mode 100644
index 0000000..6888f47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_threebuttons.png
new file mode 100644
index 0000000..417b38f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_twobuttons.png
new file mode 100644
index 0000000..66dfa37
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_button.png
new file mode 100644
index 0000000..19124b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
new file mode 100644
index 0000000..65dd0e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..3b86863
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
new file mode 100644
index 0000000..54949e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..42e2783
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
new file mode 100644
index 0000000..200e909
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..fe1bdd7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..f3f0640
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
new file mode 100644
index 0000000..285d925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
new file mode 100644
index 0000000..cfbbdd4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
new file mode 100644
index 0000000..a691827
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..3f0e99a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
new file mode 100644
index 0000000..f54fd64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
new file mode 100644
index 0000000..15c9494
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
new file mode 100644
index 0000000..de3385d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
new file mode 100644
index 0000000..dde4043
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
new file mode 100644
index 0000000..3e9e9ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..aa86092
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..750a89c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..fc91586
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_progressdialog_horizontal.png
new file mode 100644
index 0000000..f839e45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
new file mode 100644
index 0000000..c2398a1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..898442f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..6191420
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..fa88e6f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..2fabd8a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..b6812e9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..2bebaba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..3530a91
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..51ee230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..793da54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
new file mode 100644
index 0000000..5a30758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
new file mode 100644
index 0000000..7f11808
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..f1e0f2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
new file mode 100644
index 0000000..6a73d98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
new file mode 100644
index 0000000..5be0453
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
new file mode 100644
index 0000000..881276c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
new file mode 100644
index 0000000..144cd8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_switch.png
new file mode 100644
index 0000000..f3029f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
new file mode 100644
index 0000000..2dad98a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
new file mode 100644
index 0000000..df587bc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_textview.png
new file mode 100644
index 0000000..f5319bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
new file mode 100644
index 0000000..8ea8c14
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
new file mode 100644
index 0000000..6e95a85
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..bbbe3c6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_zoomcontrols.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_zoomcontrols.png
new file mode 100644
index 0000000..7892bcf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_minwidth_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..aa86092
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..750a89c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..fc91586
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_progressdialog_horizontal.png
new file mode 100644
index 0000000..f839e45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_radio_button.png
new file mode 100644
index 0000000..c2398a1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..898442f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..6191420
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..fa88e6f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..2fabd8a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..b6812e9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..2bebaba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..3530a91
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..51ee230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..793da54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_searchview.png
new file mode 100644
index 0000000..5a30758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_searchview_query.png
new file mode 100644
index 0000000..7f11808
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..f1e0f2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..6a73d98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..5be0453
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..881276c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_spinner.png
new file mode 100644
index 0000000..144cd8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_switch.png
new file mode 100644
index 0000000..f3029f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_switch_checked.png
new file mode 100644
index 0000000..2dad98a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_tabhost.png
new file mode 100644
index 0000000..df587bc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_textview.png
new file mode 100644
index 0000000..f5319bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_timepicker.png
new file mode 100644
index 0000000..8ea8c14
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_toggle_button.png
new file mode 100644
index 0000000..6e95a85
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..bbbe3c6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_zoomcontrols.png
new file mode 100644
index 0000000..7892bcf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_noactionbar_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_progressbar_horizontal_0.png
new file mode 100644
index 0000000..aa86092
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_progressbar_horizontal_100.png
new file mode 100644
index 0000000..750a89c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_progressbar_horizontal_50.png
new file mode 100644
index 0000000..fc91586
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_progressdialog_horizontal.png
new file mode 100644
index 0000000..f839e45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_radio_button.png
new file mode 100644
index 0000000..c2398a1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_radio_button_checked.png
new file mode 100644
index 0000000..898442f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_radiogroup_horizontal.png
new file mode 100644
index 0000000..6191420
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_radiogroup_vertical.png
new file mode 100644
index 0000000..fa88e6f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_ratingbar_0.png
new file mode 100644
index 0000000..2fabd8a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_ratingbar_0_pressed.png
new file mode 100644
index 0000000..b6812e9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_ratingbar_2point5.png
new file mode 100644
index 0000000..2bebaba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..3530a91
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_ratingbar_5.png
new file mode 100644
index 0000000..51ee230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_ratingbar_5_pressed.png
new file mode 100644
index 0000000..793da54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_searchview.png
new file mode 100644
index 0000000..5a30758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_searchview_query.png
new file mode 100644
index 0000000..7f11808
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_searchview_query_hint.png
new file mode 100644
index 0000000..f1e0f2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_seekbar_0.png
new file mode 100644
index 0000000..6a73d98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_seekbar_100.png
new file mode 100644
index 0000000..5be0453
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_seekbar_50.png
new file mode 100644
index 0000000..881276c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_spinner.png
new file mode 100644
index 0000000..144cd8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_switch.png
new file mode 100644
index 0000000..f3029f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_switch_checked.png
new file mode 100644
index 0000000..2dad98a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_tabhost.png
new file mode 100644
index 0000000..df587bc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_textview.png
new file mode 100644
index 0000000..f5319bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_timepicker.png
new file mode 100644
index 0000000..8ea8c14
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_toggle_button.png
new file mode 100644
index 0000000..6e95a85
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_toggle_button_checked.png
new file mode 100644
index 0000000..bbbe3c6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_zoomcontrols.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_zoomcontrols.png
new file mode 100644
index 0000000..7892bcf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialog_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_alertdialog_list.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_alertdialog_list.png
new file mode 100644
index 0000000..83e6db7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_alertdialog_multichoice.png
new file mode 100644
index 0000000..863e8a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_alertdialog_onebutton.png
new file mode 100644
index 0000000..144d7ce
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_alertdialog_singlechoice.png
new file mode 100644
index 0000000..6888f47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_alertdialog_threebuttons.png
new file mode 100644
index 0000000..417b38f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_alertdialog_twobuttons.png
new file mode 100644
index 0000000..66dfa37
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_button.png
new file mode 100644
index 0000000..19124b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_button_pressed.png
new file mode 100644
index 0000000..65dd0e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..3b86863
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_checkbox.png
new file mode 100644
index 0000000..54949e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_checkbox_checked.png
new file mode 100644
index 0000000..42e2783
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_chronometer.png
new file mode 100644
index 0000000..200e909
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_color_blue_bright.png
new file mode 100644
index 0000000..fe1bdd7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_color_blue_dark.png
new file mode 100644
index 0000000..f3f0640
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_color_blue_light.png
new file mode 100644
index 0000000..285d925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_color_green_dark.png
new file mode 100644
index 0000000..cfbbdd4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_color_green_light.png
new file mode 100644
index 0000000..a691827
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_color_orange_dark.png
new file mode 100644
index 0000000..3f0e99a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_color_orange_light.png
new file mode 100644
index 0000000..f54fd64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_color_purple.png
new file mode 100644
index 0000000..15c9494
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_color_red_dark.png
new file mode 100644
index 0000000..de3385d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_color_red_light.png
new file mode 100644
index 0000000..dde4043
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_edittext.png
new file mode 100644
index 0000000..3e9e9ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_list.png
new file mode 100644
index 0000000..83e6db7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_multichoice.png
new file mode 100644
index 0000000..863e8a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_onebutton.png
new file mode 100644
index 0000000..144d7ce
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_singlechoice.png
new file mode 100644
index 0000000..6888f47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_threebuttons.png
new file mode 100644
index 0000000..417b38f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_twobuttons.png
new file mode 100644
index 0000000..66dfa37
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_button.png
new file mode 100644
index 0000000..19124b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
new file mode 100644
index 0000000..65dd0e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..3b86863
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
new file mode 100644
index 0000000..54949e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..42e2783
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
new file mode 100644
index 0000000..200e909
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..fe1bdd7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..f3f0640
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..285d925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..cfbbdd4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
new file mode 100644
index 0000000..a691827
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..3f0e99a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..f54fd64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
new file mode 100644
index 0000000..15c9494
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..de3385d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
new file mode 100644
index 0000000..dde4043
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
new file mode 100644
index 0000000..3e9e9ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..aa86092
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..750a89c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..fc91586
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_progressdialog_horizontal.png
new file mode 100644
index 0000000..f839e45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
new file mode 100644
index 0000000..c2398a1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..898442f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..6191420
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..fa88e6f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..2fabd8a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..b6812e9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..2bebaba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..3530a91
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..51ee230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..793da54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
new file mode 100644
index 0000000..5a30758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
new file mode 100644
index 0000000..7f11808
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..f1e0f2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..6a73d98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..5be0453
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..881276c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
new file mode 100644
index 0000000..144cd8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
new file mode 100644
index 0000000..f3029f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
new file mode 100644
index 0000000..2dad98a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
new file mode 100644
index 0000000..df587bc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
new file mode 100644
index 0000000..f5319bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
new file mode 100644
index 0000000..8ea8c14
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
new file mode 100644
index 0000000..6e95a85
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..bbbe3c6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_zoomcontrols.png
new file mode 100644
index 0000000..7892bcf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_noactionbar_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
new file mode 100644
index 0000000..aa86092
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
new file mode 100644
index 0000000..750a89c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
new file mode 100644
index 0000000..fc91586
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_progressdialog_horizontal.png
new file mode 100644
index 0000000..f839e45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_radio_button.png
new file mode 100644
index 0000000..c2398a1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_radio_button_checked.png
new file mode 100644
index 0000000..898442f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
new file mode 100644
index 0000000..6191420
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
new file mode 100644
index 0000000..fa88e6f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_ratingbar_0.png
new file mode 100644
index 0000000..2fabd8a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
new file mode 100644
index 0000000..b6812e9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
new file mode 100644
index 0000000..2bebaba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..3530a91
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_ratingbar_5.png
new file mode 100644
index 0000000..51ee230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
new file mode 100644
index 0000000..793da54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_searchview.png
new file mode 100644
index 0000000..5a30758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_searchview_query.png
new file mode 100644
index 0000000..7f11808
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
new file mode 100644
index 0000000..f1e0f2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_seekbar_0.png
new file mode 100644
index 0000000..6a73d98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_seekbar_100.png
new file mode 100644
index 0000000..5be0453
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_seekbar_50.png
new file mode 100644
index 0000000..881276c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_spinner.png
new file mode 100644
index 0000000..144cd8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_switch.png
new file mode 100644
index 0000000..f3029f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_switch_checked.png
new file mode 100644
index 0000000..2dad98a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_tabhost.png
new file mode 100644
index 0000000..df587bc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_textview.png
new file mode 100644
index 0000000..f5319bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_timepicker.png
new file mode 100644
index 0000000..8ea8c14
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_toggle_button.png
new file mode 100644
index 0000000..6e95a85
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
new file mode 100644
index 0000000..bbbe3c6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_zoomcontrols.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_zoomcontrols.png
new file mode 100644
index 0000000..7892bcf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_dialogwhenlarge_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_edittext.png
new file mode 100644
index 0000000..3e9e9ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_alertdialog_list.png
new file mode 100644
index 0000000..83e6db7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_alertdialog_multichoice.png
new file mode 100644
index 0000000..863e8a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_alertdialog_onebutton.png
new file mode 100644
index 0000000..144d7ce
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_alertdialog_singlechoice.png
new file mode 100644
index 0000000..6888f47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_alertdialog_threebuttons.png
new file mode 100644
index 0000000..417b38f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_alertdialog_twobuttons.png
new file mode 100644
index 0000000..66dfa37
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_button.png
new file mode 100644
index 0000000..19124b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_button_pressed.png
new file mode 100644
index 0000000..65dd0e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_calendar_view.png
new file mode 100644
index 0000000..3b86863
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_checkbox.png
new file mode 100644
index 0000000..54949e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..42e2783
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_chronometer.png
new file mode 100644
index 0000000..200e909
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..fe1bdd7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..f3f0640
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..285d925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..cfbbdd4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_color_green_light.png
new file mode 100644
index 0000000..a691827
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..3f0e99a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..f54fd64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_color_purple.png
new file mode 100644
index 0000000..15c9494
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..de3385d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_color_red_light.png
new file mode 100644
index 0000000..dde4043
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_edittext.png
new file mode 100644
index 0000000..3e9e9ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_alertdialog_list.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_alertdialog_list.png
new file mode 100644
index 0000000..83e6db7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_alertdialog_multichoice.png
new file mode 100644
index 0000000..863e8a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_alertdialog_onebutton.png
new file mode 100644
index 0000000..144d7ce
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_alertdialog_singlechoice.png
new file mode 100644
index 0000000..6888f47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_alertdialog_threebuttons.png
new file mode 100644
index 0000000..417b38f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_alertdialog_twobuttons.png
new file mode 100644
index 0000000..66dfa37
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_button.png
new file mode 100644
index 0000000..19124b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_button_pressed.png
new file mode 100644
index 0000000..65dd0e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..3b86863
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_checkbox.png
new file mode 100644
index 0000000..54949e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
new file mode 100644
index 0000000..42e2783
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_chronometer.png
new file mode 100644
index 0000000..200e909
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
new file mode 100644
index 0000000..fe1bdd7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
new file mode 100644
index 0000000..f3f0640
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
new file mode 100644
index 0000000..285d925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
new file mode 100644
index 0000000..cfbbdd4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_color_green_light.png
new file mode 100644
index 0000000..a691827
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
new file mode 100644
index 0000000..3f0e99a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
new file mode 100644
index 0000000..f54fd64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_color_purple.png
new file mode 100644
index 0000000..15c9494
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
new file mode 100644
index 0000000..de3385d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_color_red_light.png
new file mode 100644
index 0000000..dde4043
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_edittext.png
new file mode 100644
index 0000000..3e9e9ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
new file mode 100644
index 0000000..aa86092
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
new file mode 100644
index 0000000..750a89c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
new file mode 100644
index 0000000..fc91586
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_progressdialog_horizontal.png
new file mode 100644
index 0000000..f839e45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_radio_button.png
new file mode 100644
index 0000000..c2398a1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
new file mode 100644
index 0000000..898442f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
new file mode 100644
index 0000000..6191420
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
new file mode 100644
index 0000000..fa88e6f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
new file mode 100644
index 0000000..2fabd8a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
new file mode 100644
index 0000000..b6812e9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
new file mode 100644
index 0000000..2bebaba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..3530a91
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
new file mode 100644
index 0000000..51ee230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
new file mode 100644
index 0000000..793da54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_searchview.png
new file mode 100644
index 0000000..5a30758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_searchview_query.png
new file mode 100644
index 0000000..7f11808
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
new file mode 100644
index 0000000..f1e0f2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
new file mode 100644
index 0000000..6a73d98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
new file mode 100644
index 0000000..5be0453
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
new file mode 100644
index 0000000..881276c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_spinner.png
new file mode 100644
index 0000000..144cd8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_switch.png
new file mode 100644
index 0000000..f3029f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_switch_checked.png
new file mode 100644
index 0000000..2dad98a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_tabhost.png
new file mode 100644
index 0000000..df587bc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_textview.png
new file mode 100644
index 0000000..f5319bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_timepicker.png
new file mode 100644
index 0000000..8ea8c14
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_toggle_button.png
new file mode 100644
index 0000000..6e95a85
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
new file mode 100644
index 0000000..bbbe3c6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_zoomcontrols.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_zoomcontrols.png
new file mode 100644
index 0000000..7892bcf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_fullscreen_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..aa86092
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..750a89c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..fc91586
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_progressdialog_horizontal.png
new file mode 100644
index 0000000..f839e45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_radio_button.png
new file mode 100644
index 0000000..c2398a1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..898442f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..6191420
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..fa88e6f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..2fabd8a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..b6812e9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..2bebaba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..3530a91
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..51ee230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..793da54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_searchview.png
new file mode 100644
index 0000000..5a30758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_searchview_query.png
new file mode 100644
index 0000000..7f11808
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..f1e0f2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..6a73d98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..5be0453
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..881276c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_spinner.png
new file mode 100644
index 0000000..144cd8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_switch.png
new file mode 100644
index 0000000..f3029f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_switch_checked.png
new file mode 100644
index 0000000..2dad98a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_tabhost.png
new file mode 100644
index 0000000..df587bc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_textview.png
new file mode 100644
index 0000000..f5319bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_timepicker.png
new file mode 100644
index 0000000..8ea8c14
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_toggle_button.png
new file mode 100644
index 0000000..6e95a85
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..bbbe3c6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_zoomcontrols.png
new file mode 100644
index 0000000..7892bcf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_noactionbar_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_alertdialog_list.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_alertdialog_list.png
new file mode 100644
index 0000000..83e6db7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_alertdialog_multichoice.png
new file mode 100644
index 0000000..863e8a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_alertdialog_onebutton.png
new file mode 100644
index 0000000..144d7ce
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_alertdialog_singlechoice.png
new file mode 100644
index 0000000..6888f47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_alertdialog_threebuttons.png
new file mode 100644
index 0000000..417b38f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_alertdialog_twobuttons.png
new file mode 100644
index 0000000..66dfa37
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_button.png
new file mode 100644
index 0000000..19124b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_button_pressed.png
new file mode 100644
index 0000000..65dd0e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_calendar_view.png
new file mode 100644
index 0000000..3b86863
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_checkbox.png
new file mode 100644
index 0000000..54949e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_checkbox_checked.png
new file mode 100644
index 0000000..42e2783
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_chronometer.png
new file mode 100644
index 0000000..200e909
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_color_blue_bright.png
new file mode 100644
index 0000000..fe1bdd7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_color_blue_dark.png
new file mode 100644
index 0000000..f3f0640
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_color_blue_light.png
new file mode 100644
index 0000000..285d925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_color_green_dark.png
new file mode 100644
index 0000000..cfbbdd4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_color_green_light.png
new file mode 100644
index 0000000..a691827
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_color_orange_dark.png
new file mode 100644
index 0000000..3f0e99a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_color_orange_light.png
new file mode 100644
index 0000000..f54fd64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_color_purple.png
new file mode 100644
index 0000000..15c9494
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_color_red_dark.png
new file mode 100644
index 0000000..de3385d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_color_red_light.png
new file mode 100644
index 0000000..dde4043
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_edittext.png
new file mode 100644
index 0000000..3e9e9ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_progressbar_horizontal_0.png
new file mode 100644
index 0000000..aa86092
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_progressbar_horizontal_100.png
new file mode 100644
index 0000000..750a89c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_progressbar_horizontal_50.png
new file mode 100644
index 0000000..fc91586
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_progressdialog_horizontal.png
new file mode 100644
index 0000000..f839e45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_radio_button.png
new file mode 100644
index 0000000..c2398a1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_radio_button_checked.png
new file mode 100644
index 0000000..898442f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_radiogroup_horizontal.png
new file mode 100644
index 0000000..6191420
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_radiogroup_vertical.png
new file mode 100644
index 0000000..fa88e6f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_ratingbar_0.png
new file mode 100644
index 0000000..2fabd8a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_ratingbar_0_pressed.png
new file mode 100644
index 0000000..b6812e9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_ratingbar_2point5.png
new file mode 100644
index 0000000..2bebaba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..3530a91
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_ratingbar_5.png
new file mode 100644
index 0000000..51ee230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_ratingbar_5_pressed.png
new file mode 100644
index 0000000..793da54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_searchview.png
new file mode 100644
index 0000000..5a30758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_searchview_query.png
new file mode 100644
index 0000000..7f11808
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_searchview_query_hint.png
new file mode 100644
index 0000000..f1e0f2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_seekbar_0.png
new file mode 100644
index 0000000..6a73d98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_seekbar_100.png
new file mode 100644
index 0000000..5be0453
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_seekbar_50.png
new file mode 100644
index 0000000..881276c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_spinner.png
new file mode 100644
index 0000000..144cd8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_switch.png
new file mode 100644
index 0000000..f3029f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_switch_checked.png
new file mode 100644
index 0000000..2dad98a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_tabhost.png
new file mode 100644
index 0000000..df587bc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_textview.png
new file mode 100644
index 0000000..f5319bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_timepicker.png
new file mode 100644
index 0000000..8ea8c14
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_toggle_button.png
new file mode 100644
index 0000000..6e95a85
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_toggle_button_checked.png
new file mode 100644
index 0000000..bbbe3c6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_zoomcontrols.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_zoomcontrols.png
new file mode 100644
index 0000000..7892bcf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_panel_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_progressbar_horizontal_0.png
new file mode 100644
index 0000000..aa86092
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_progressbar_horizontal_100.png
new file mode 100644
index 0000000..750a89c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_progressbar_horizontal_50.png
new file mode 100644
index 0000000..fc91586
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_progressdialog_horizontal.png
new file mode 100644
index 0000000..f839e45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_radio_button.png
new file mode 100644
index 0000000..c2398a1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_radio_button_checked.png
new file mode 100644
index 0000000..898442f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_radiogroup_horizontal.png
new file mode 100644
index 0000000..6191420
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_radiogroup_vertical.png
new file mode 100644
index 0000000..fa88e6f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_ratingbar_0.png
new file mode 100644
index 0000000..2fabd8a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_ratingbar_0_pressed.png
new file mode 100644
index 0000000..b6812e9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_ratingbar_2point5.png
new file mode 100644
index 0000000..2bebaba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..3530a91
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_ratingbar_5.png
new file mode 100644
index 0000000..51ee230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_ratingbar_5_pressed.png
new file mode 100644
index 0000000..793da54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_searchview.png
new file mode 100644
index 0000000..5a30758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_searchview_query.png
new file mode 100644
index 0000000..7f11808
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_searchview_query_hint.png
new file mode 100644
index 0000000..f1e0f2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_seekbar_0.png
new file mode 100644
index 0000000..6a73d98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_seekbar_100.png
new file mode 100644
index 0000000..5be0453
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_seekbar_50.png
new file mode 100644
index 0000000..881276c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_spinner.png
new file mode 100644
index 0000000..144cd8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_switch.png
new file mode 100644
index 0000000..f3029f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_switch_checked.png
new file mode 100644
index 0000000..2dad98a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_tabhost.png
new file mode 100644
index 0000000..df587bc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_textview.png
new file mode 100644
index 0000000..f5319bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_timepicker.png
new file mode 100644
index 0000000..8ea8c14
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_toggle_button.png
new file mode 100644
index 0000000..6e95a85
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_toggle_button_checked.png
new file mode 100644
index 0000000..bbbe3c6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_light_zoomcontrols.png b/tests/tests/holo/res/drawable-large-mdpi/holo_light_zoomcontrols.png
new file mode 100644
index 0000000..7892bcf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_light_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_alertdialog_list.png
new file mode 100644
index 0000000..1d9ee47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_alertdialog_multichoice.png
new file mode 100644
index 0000000..31434c6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_alertdialog_onebutton.png
new file mode 100644
index 0000000..517a575
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_alertdialog_singlechoice.png
new file mode 100644
index 0000000..3938fa9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_alertdialog_threebuttons.png
new file mode 100644
index 0000000..a3f6005
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_alertdialog_twobuttons.png
new file mode 100644
index 0000000..ae3bbb0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_button.png
new file mode 100644
index 0000000..6d81450
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_button_pressed.png
new file mode 100644
index 0000000..69f8061
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_calendar_view.png
new file mode 100644
index 0000000..50d00ab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_checkbox.png
new file mode 100644
index 0000000..63dc6ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..a0f737c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_chronometer.png
new file mode 100644
index 0000000..a4e7093
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..fe1bdd7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..f3f0640
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..285d925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..cfbbdd4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_color_green_light.png
new file mode 100644
index 0000000..a691827
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..3f0e99a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..f54fd64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_color_purple.png
new file mode 100644
index 0000000..15c9494
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..de3385d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_color_red_light.png
new file mode 100644
index 0000000..dde4043
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_edittext.png
new file mode 100644
index 0000000..6fabb7e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_alertdialog_list.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_alertdialog_list.png
new file mode 100644
index 0000000..1d9ee47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_alertdialog_multichoice.png
new file mode 100644
index 0000000..31434c6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_alertdialog_onebutton.png
new file mode 100644
index 0000000..517a575
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_alertdialog_singlechoice.png
new file mode 100644
index 0000000..3938fa9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_alertdialog_threebuttons.png
new file mode 100644
index 0000000..a3f6005
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_alertdialog_twobuttons.png
new file mode 100644
index 0000000..ae3bbb0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_button.png
new file mode 100644
index 0000000..6d81450
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_button_pressed.png
new file mode 100644
index 0000000..69f8061
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..50d00ab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_checkbox.png
new file mode 100644
index 0000000..63dc6ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_checkbox_checked.png
new file mode 100644
index 0000000..a0f737c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_chronometer.png
new file mode 100644
index 0000000..a4e7093
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_color_blue_bright.png
new file mode 100644
index 0000000..fe1bdd7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_color_blue_dark.png
new file mode 100644
index 0000000..f3f0640
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_color_blue_light.png
new file mode 100644
index 0000000..285d925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_color_green_dark.png
new file mode 100644
index 0000000..cfbbdd4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_color_green_light.png
new file mode 100644
index 0000000..a691827
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_color_orange_dark.png
new file mode 100644
index 0000000..3f0e99a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_color_orange_light.png
new file mode 100644
index 0000000..f54fd64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_color_purple.png
new file mode 100644
index 0000000..15c9494
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_color_red_dark.png
new file mode 100644
index 0000000..de3385d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_color_red_light.png
new file mode 100644
index 0000000..dde4043
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_edittext.png
new file mode 100644
index 0000000..6fabb7e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
new file mode 100644
index 0000000..a73db14
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
new file mode 100644
index 0000000..2813c84
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
new file mode 100644
index 0000000..d5c65a9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_progressdialog_horizontal.png
new file mode 100644
index 0000000..a0a8f12
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_radio_button.png
new file mode 100644
index 0000000..813b9ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_radio_button_checked.png
new file mode 100644
index 0000000..ca4a1b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
new file mode 100644
index 0000000..944e7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
new file mode 100644
index 0000000..e9aecf8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_ratingbar_0.png
new file mode 100644
index 0000000..00a9aab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
new file mode 100644
index 0000000..06f4070
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
new file mode 100644
index 0000000..88725b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..303db0c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_ratingbar_5.png
new file mode 100644
index 0000000..f62fa44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
new file mode 100644
index 0000000..45ade7b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_searchview.png
new file mode 100644
index 0000000..d4ccda7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_searchview_query.png
new file mode 100644
index 0000000..e6e3646
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
new file mode 100644
index 0000000..df6d421
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_seekbar_0.png
new file mode 100644
index 0000000..6ef0c71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_seekbar_100.png
new file mode 100644
index 0000000..5be0453
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_seekbar_50.png
new file mode 100644
index 0000000..3ba6228
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_spinner.png
new file mode 100644
index 0000000..7b14cc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_switch.png
new file mode 100644
index 0000000..a1beda8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_switch_checked.png
new file mode 100644
index 0000000..a5e17d3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_tabhost.png
new file mode 100644
index 0000000..b5476b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_textview.png
new file mode 100644
index 0000000..1ccf89f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_timepicker.png
new file mode 100644
index 0000000..ead9c27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_toggle_button.png
new file mode 100644
index 0000000..948e1b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
new file mode 100644
index 0000000..c89fae2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_zoomcontrols.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_zoomcontrols.png
new file mode 100644
index 0000000..7892bcf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_fullscreen_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..a73db14
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..2813c84
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..d5c65a9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_progressdialog_horizontal.png
new file mode 100644
index 0000000..a0a8f12
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_radio_button.png
new file mode 100644
index 0000000..813b9ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..ca4a1b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..944e7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..e9aecf8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..00a9aab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..06f4070
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..88725b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..303db0c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..f62fa44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..45ade7b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_searchview.png
new file mode 100644
index 0000000..d4ccda7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_searchview_query.png
new file mode 100644
index 0000000..e6e3646
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..df6d421
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..6ef0c71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..5be0453
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..3ba6228
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_spinner.png
new file mode 100644
index 0000000..7b14cc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_switch.png
new file mode 100644
index 0000000..a1beda8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_switch_checked.png
new file mode 100644
index 0000000..a5e17d3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_tabhost.png
new file mode 100644
index 0000000..b5476b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_textview.png
new file mode 100644
index 0000000..1ccf89f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_timepicker.png
new file mode 100644
index 0000000..ead9c27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_toggle_button.png
new file mode 100644
index 0000000..948e1b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..c89fae2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_zoomcontrols.png
new file mode 100644
index 0000000..7892bcf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_noactionbar_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_alertdialog_list.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_alertdialog_list.png
new file mode 100644
index 0000000..1d9ee47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_alertdialog_multichoice.png
new file mode 100644
index 0000000..31434c6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_alertdialog_onebutton.png
new file mode 100644
index 0000000..517a575
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_alertdialog_singlechoice.png
new file mode 100644
index 0000000..3938fa9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_alertdialog_threebuttons.png
new file mode 100644
index 0000000..a3f6005
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_alertdialog_twobuttons.png
new file mode 100644
index 0000000..ae3bbb0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_button.png
new file mode 100644
index 0000000..6d81450
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_button_pressed.png
new file mode 100644
index 0000000..69f8061
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_calendar_view.png
new file mode 100644
index 0000000..50d00ab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_checkbox.png
new file mode 100644
index 0000000..63dc6ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_checkbox_checked.png
new file mode 100644
index 0000000..a0f737c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_chronometer.png
new file mode 100644
index 0000000..a4e7093
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_color_blue_bright.png
new file mode 100644
index 0000000..fe1bdd7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_color_blue_dark.png
new file mode 100644
index 0000000..f3f0640
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_color_blue_light.png
new file mode 100644
index 0000000..285d925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_color_green_dark.png
new file mode 100644
index 0000000..cfbbdd4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_color_green_light.png
new file mode 100644
index 0000000..a691827
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_color_orange_dark.png
new file mode 100644
index 0000000..3f0e99a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_color_orange_light.png
new file mode 100644
index 0000000..f54fd64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_color_purple.png
new file mode 100644
index 0000000..15c9494
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_color_red_dark.png
new file mode 100644
index 0000000..de3385d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_color_red_light.png
new file mode 100644
index 0000000..dde4043
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_edittext.png
new file mode 100644
index 0000000..6fabb7e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_progressbar_horizontal_0.png
new file mode 100644
index 0000000..a73db14
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_progressbar_horizontal_100.png
new file mode 100644
index 0000000..2813c84
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_progressbar_horizontal_50.png
new file mode 100644
index 0000000..d5c65a9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_progressdialog_horizontal.png
new file mode 100644
index 0000000..a0a8f12
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_radio_button.png
new file mode 100644
index 0000000..813b9ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_radio_button_checked.png
new file mode 100644
index 0000000..ca4a1b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_radiogroup_horizontal.png
new file mode 100644
index 0000000..944e7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_radiogroup_vertical.png
new file mode 100644
index 0000000..e9aecf8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_ratingbar_0.png
new file mode 100644
index 0000000..00a9aab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_ratingbar_0_pressed.png
new file mode 100644
index 0000000..06f4070
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_ratingbar_2point5.png
new file mode 100644
index 0000000..88725b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..303db0c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_ratingbar_5.png
new file mode 100644
index 0000000..f62fa44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_ratingbar_5_pressed.png
new file mode 100644
index 0000000..45ade7b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_searchview.png
new file mode 100644
index 0000000..d4ccda7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_searchview_query.png
new file mode 100644
index 0000000..e6e3646
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_searchview_query_hint.png
new file mode 100644
index 0000000..df6d421
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_seekbar_0.png
new file mode 100644
index 0000000..6ef0c71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_seekbar_100.png
new file mode 100644
index 0000000..5be0453
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_seekbar_50.png
new file mode 100644
index 0000000..3ba6228
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_spinner.png
new file mode 100644
index 0000000..7b14cc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_switch.png
new file mode 100644
index 0000000..a1beda8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_switch_checked.png
new file mode 100644
index 0000000..a5e17d3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_tabhost.png
new file mode 100644
index 0000000..b5476b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_textview.png
new file mode 100644
index 0000000..1ccf89f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_timepicker.png
new file mode 100644
index 0000000..ead9c27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_toggle_button.png
new file mode 100644
index 0000000..948e1b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_toggle_button_checked.png
new file mode 100644
index 0000000..c89fae2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_panel_zoomcontrols.png b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_zoomcontrols.png
new file mode 100644
index 0000000..7892bcf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_panel_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-large-mdpi/holo_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_progressbar_horizontal_0.png
new file mode 100644
index 0000000..a73db14
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_progressbar_horizontal_100.png
new file mode 100644
index 0000000..2813c84
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_progressbar_horizontal_50.png
new file mode 100644
index 0000000..d5c65a9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-large-mdpi/holo_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-large-mdpi/holo_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_progressdialog_horizontal.png
new file mode 100644
index 0000000..a0a8f12
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_radio_button.png
new file mode 100644
index 0000000..813b9ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_radio_button_checked.png
new file mode 100644
index 0000000..ca4a1b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_radiogroup_horizontal.png
new file mode 100644
index 0000000..944e7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-large-mdpi/holo_radiogroup_vertical.png
new file mode 100644
index 0000000..e9aecf8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_ratingbar_0.png
new file mode 100644
index 0000000..00a9aab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_ratingbar_0_pressed.png
new file mode 100644
index 0000000..06f4070
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_ratingbar_2point5.png
new file mode 100644
index 0000000..88725b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..303db0c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_ratingbar_5.png
new file mode 100644
index 0000000..f62fa44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_ratingbar_5_pressed.png
new file mode 100644
index 0000000..45ade7b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_searchview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_searchview.png
new file mode 100644
index 0000000..d4ccda7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-large-mdpi/holo_searchview_query.png
new file mode 100644
index 0000000..e6e3646
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-large-mdpi/holo_searchview_query_hint.png
new file mode 100644
index 0000000..df6d421
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_seekbar_0.png
new file mode 100644
index 0000000..6ef0c71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_seekbar_100.png
new file mode 100644
index 0000000..5be0453
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_seekbar_50.png
new file mode 100644
index 0000000..3ba6228
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_spinner.png b/tests/tests/holo/res/drawable-large-mdpi/holo_spinner.png
new file mode 100644
index 0000000..7b14cc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_switch.png b/tests/tests/holo/res/drawable-large-mdpi/holo_switch.png
new file mode 100644
index 0000000..a1beda8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_switch_checked.png
new file mode 100644
index 0000000..a5e17d3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-large-mdpi/holo_tabhost.png
new file mode 100644
index 0000000..b5476b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_textview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_textview.png
new file mode 100644
index 0000000..1ccf89f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-large-mdpi/holo_timepicker.png
new file mode 100644
index 0000000..ead9c27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_toggle_button.png
new file mode 100644
index 0000000..948e1b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_toggle_button_checked.png
new file mode 100644
index 0000000..c89fae2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_alertdialog_list.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_alertdialog_list.png
new file mode 100644
index 0000000..1d9ee47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_alertdialog_multichoice.png
new file mode 100644
index 0000000..31434c6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_alertdialog_onebutton.png
new file mode 100644
index 0000000..517a575
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_alertdialog_singlechoice.png
new file mode 100644
index 0000000..3938fa9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_alertdialog_threebuttons.png
new file mode 100644
index 0000000..a3f6005
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_alertdialog_twobuttons.png
new file mode 100644
index 0000000..ae3bbb0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_button.png
new file mode 100644
index 0000000..6d81450
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_button_pressed.png
new file mode 100644
index 0000000..69f8061
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_calendar_view.png
new file mode 100644
index 0000000..50d00ab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_checkbox.png
new file mode 100644
index 0000000..63dc6ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_checkbox_checked.png
new file mode 100644
index 0000000..a0f737c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_chronometer.png
new file mode 100644
index 0000000..a4e7093
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_color_blue_bright.png
new file mode 100644
index 0000000..fe1bdd7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_color_blue_dark.png
new file mode 100644
index 0000000..f3f0640
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_color_blue_light.png
new file mode 100644
index 0000000..285d925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_color_green_dark.png
new file mode 100644
index 0000000..cfbbdd4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_color_green_light.png
new file mode 100644
index 0000000..a691827
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_color_orange_dark.png
new file mode 100644
index 0000000..3f0e99a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_color_orange_light.png
new file mode 100644
index 0000000..f54fd64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_color_purple.png
new file mode 100644
index 0000000..15c9494
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_color_red_dark.png
new file mode 100644
index 0000000..de3385d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_color_red_light.png
new file mode 100644
index 0000000..dde4043
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_edittext.png
new file mode 100644
index 0000000..6fabb7e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_alertdialog_list.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_alertdialog_list.png
new file mode 100644
index 0000000..1d9ee47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_alertdialog_multichoice.png
new file mode 100644
index 0000000..31434c6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_alertdialog_onebutton.png
new file mode 100644
index 0000000..517a575
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_alertdialog_singlechoice.png
new file mode 100644
index 0000000..3938fa9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_alertdialog_threebuttons.png
new file mode 100644
index 0000000..a3f6005
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_alertdialog_twobuttons.png
new file mode 100644
index 0000000..ae3bbb0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_button.png
new file mode 100644
index 0000000..6d81450
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_button_pressed.png
new file mode 100644
index 0000000..69f8061
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_calendar_view.png
new file mode 100644
index 0000000..50d00ab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_checkbox.png
new file mode 100644
index 0000000..63dc6ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_checkbox_checked.png
new file mode 100644
index 0000000..a0f737c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_chronometer.png
new file mode 100644
index 0000000..a4e7093
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_color_blue_bright.png
new file mode 100644
index 0000000..fe1bdd7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_color_blue_dark.png
new file mode 100644
index 0000000..f3f0640
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_color_blue_light.png
new file mode 100644
index 0000000..285d925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_color_green_dark.png
new file mode 100644
index 0000000..cfbbdd4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_color_green_light.png
new file mode 100644
index 0000000..a691827
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_color_orange_dark.png
new file mode 100644
index 0000000..3f0e99a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_color_orange_light.png
new file mode 100644
index 0000000..f54fd64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_color_purple.png
new file mode 100644
index 0000000..15c9494
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_color_red_dark.png
new file mode 100644
index 0000000..de3385d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_color_red_light.png
new file mode 100644
index 0000000..dde4043
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_edittext.png
new file mode 100644
index 0000000..6fabb7e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..a73db14
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..2813c84
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..d5c65a9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_progressdialog_horizontal.png
new file mode 100644
index 0000000..a0a8f12
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_radio_button.png
new file mode 100644
index 0000000..813b9ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_radio_button_checked.png
new file mode 100644
index 0000000..ca4a1b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
new file mode 100644
index 0000000..944e7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
new file mode 100644
index 0000000..e9aecf8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_ratingbar_0.png
new file mode 100644
index 0000000..00a9aab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..06f4070
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
new file mode 100644
index 0000000..88725b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..303db0c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_ratingbar_5.png
new file mode 100644
index 0000000..f62fa44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..45ade7b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_searchview.png
new file mode 100644
index 0000000..d4ccda7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_searchview_query.png
new file mode 100644
index 0000000..e6e3646
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
new file mode 100644
index 0000000..df6d421
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_seekbar_0.png
new file mode 100644
index 0000000..6ef0c71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_seekbar_100.png
new file mode 100644
index 0000000..5be0453
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_seekbar_50.png
new file mode 100644
index 0000000..3ba6228
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_spinner.png
new file mode 100644
index 0000000..7b14cc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_switch.png
new file mode 100644
index 0000000..a1beda8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_switch_checked.png
new file mode 100644
index 0000000..a5e17d3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_tabhost.png
new file mode 100644
index 0000000..b5476b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_textview.png
new file mode 100644
index 0000000..1ccf89f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_timepicker.png
new file mode 100644
index 0000000..ead9c27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_toggle_button.png
new file mode 100644
index 0000000..948e1b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
new file mode 100644
index 0000000..c89fae2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_zoomcontrols.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_zoomcontrols.png
new file mode 100644
index 0000000..7892bcf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_notitlebar_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_progressbar_horizontal_0.png
new file mode 100644
index 0000000..a73db14
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_progressbar_horizontal_100.png
new file mode 100644
index 0000000..2813c84
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_progressbar_horizontal_50.png
new file mode 100644
index 0000000..d5c65a9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_progressdialog_horizontal.png
new file mode 100644
index 0000000..a0a8f12
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_radio_button.png
new file mode 100644
index 0000000..813b9ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_radio_button_checked.png
new file mode 100644
index 0000000..ca4a1b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_radiogroup_horizontal.png
new file mode 100644
index 0000000..944e7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_radiogroup_vertical.png
new file mode 100644
index 0000000..e9aecf8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_ratingbar_0.png
new file mode 100644
index 0000000..00a9aab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_ratingbar_0_pressed.png
new file mode 100644
index 0000000..06f4070
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_ratingbar_2point5.png
new file mode 100644
index 0000000..88725b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..303db0c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_ratingbar_5.png
new file mode 100644
index 0000000..f62fa44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_ratingbar_5_pressed.png
new file mode 100644
index 0000000..45ade7b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_searchview.png
new file mode 100644
index 0000000..d4ccda7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_searchview_query.png
new file mode 100644
index 0000000..e6e3646
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_searchview_query_hint.png
new file mode 100644
index 0000000..df6d421
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_seekbar_0.png
new file mode 100644
index 0000000..6ef0c71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_seekbar_100.png
new file mode 100644
index 0000000..5be0453
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_seekbar_50.png
new file mode 100644
index 0000000..3ba6228
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_spinner.png
new file mode 100644
index 0000000..7b14cc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_switch.png
new file mode 100644
index 0000000..a1beda8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_switch_checked.png
new file mode 100644
index 0000000..a5e17d3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_tabhost.png
new file mode 100644
index 0000000..b5476b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_textview.png
new file mode 100644
index 0000000..1ccf89f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_timepicker.png
new file mode 100644
index 0000000..ead9c27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_toggle_button.png
new file mode 100644
index 0000000..948e1b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_toggle_button_checked.png
new file mode 100644
index 0000000..c89fae2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_zoomcontrols.png b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_zoomcontrols.png
new file mode 100644
index 0000000..7892bcf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_wallpaper_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-large-mdpi/holo_zoomcontrols.png b/tests/tests/holo/res/drawable-large-mdpi/holo_zoomcontrols.png
new file mode 100644
index 0000000..7892bcf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-large-mdpi/holo_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_alertdialog_list.png
new file mode 100644
index 0000000..2791d02
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_alertdialog_multichoice.png
new file mode 100644
index 0000000..8f6b6df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_alertdialog_onebutton.png
new file mode 100644
index 0000000..e0fabdf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_alertdialog_singlechoice.png
new file mode 100644
index 0000000..2aec266
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_alertdialog_threebuttons.png
new file mode 100644
index 0000000..9d73083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_alertdialog_twobuttons.png
new file mode 100644
index 0000000..34810fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_button.png
new file mode 100644
index 0000000..0478b2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_button_pressed.png
new file mode 100644
index 0000000..fa826df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_calendar_view.png
new file mode 100644
index 0000000..52ffc7f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_checkbox.png
new file mode 100644
index 0000000..2e1963f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_checkbox_checked.png
new file mode 100644
index 0000000..4eb39c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_chronometer.png
new file mode 100644
index 0000000..2a62d85
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_color_blue_bright.png
new file mode 100644
index 0000000..d1a3f99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_color_blue_dark.png
new file mode 100644
index 0000000..52a4de2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_color_blue_light.png
new file mode 100644
index 0000000..f9439e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_color_green_dark.png
new file mode 100644
index 0000000..4f8af58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_color_green_light.png
new file mode 100644
index 0000000..6ad2394
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_color_orange_dark.png
new file mode 100644
index 0000000..73f8418
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_color_orange_light.png
new file mode 100644
index 0000000..90ab999
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_color_purple.png
new file mode 100644
index 0000000..30f2d23
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_color_red_dark.png
new file mode 100644
index 0000000..c0cbef0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_color_red_light.png
new file mode 100644
index 0000000..e99df2c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_alertdialog_list.png
new file mode 100644
index 0000000..2791d02
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_alertdialog_multichoice.png
new file mode 100644
index 0000000..8f6b6df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_alertdialog_onebutton.png
new file mode 100644
index 0000000..e0fabdf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_alertdialog_singlechoice.png
new file mode 100644
index 0000000..2aec266
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_alertdialog_threebuttons.png
new file mode 100644
index 0000000..9d73083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_alertdialog_twobuttons.png
new file mode 100644
index 0000000..34810fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_button.png
new file mode 100644
index 0000000..0478b2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_button_pressed.png
new file mode 100644
index 0000000..fa826df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_calendar_view.png
new file mode 100644
index 0000000..52ffc7f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_checkbox.png
new file mode 100644
index 0000000..2e1963f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_checkbox_checked.png
new file mode 100644
index 0000000..4eb39c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_chronometer.png
new file mode 100644
index 0000000..2a62d85
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_blue_bright.png
new file mode 100644
index 0000000..d1a3f99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_blue_dark.png
new file mode 100644
index 0000000..52a4de2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_blue_light.png
new file mode 100644
index 0000000..f9439e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_green_dark.png
new file mode 100644
index 0000000..4f8af58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_green_light.png
new file mode 100644
index 0000000..6ad2394
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_orange_dark.png
new file mode 100644
index 0000000..73f8418
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_orange_light.png
new file mode 100644
index 0000000..90ab999
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_purple.png
new file mode 100644
index 0000000..30f2d23
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_red_dark.png
new file mode 100644
index 0000000..c0cbef0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_red_light.png
new file mode 100644
index 0000000..e99df2c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_edittext.png
new file mode 100644
index 0000000..4b41717
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_alertdialog_list.png
new file mode 100644
index 0000000..2791d02
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_alertdialog_multichoice.png
new file mode 100644
index 0000000..8f6b6df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_alertdialog_onebutton.png
new file mode 100644
index 0000000..e0fabdf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_alertdialog_singlechoice.png
new file mode 100644
index 0000000..2aec266
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_alertdialog_threebuttons.png
new file mode 100644
index 0000000..9d73083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_alertdialog_twobuttons.png
new file mode 100644
index 0000000..34810fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_button.png
new file mode 100644
index 0000000..0478b2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_button_pressed.png
new file mode 100644
index 0000000..fa826df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..52ffc7f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_checkbox.png
new file mode 100644
index 0000000..2e1963f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..4eb39c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_chronometer.png
new file mode 100644
index 0000000..2a62d85
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..d1a3f99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..52a4de2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_blue_light.png
new file mode 100644
index 0000000..f9439e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_green_dark.png
new file mode 100644
index 0000000..4f8af58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_green_light.png
new file mode 100644
index 0000000..6ad2394
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..73f8418
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_orange_light.png
new file mode 100644
index 0000000..90ab999
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_purple.png
new file mode 100644
index 0000000..30f2d23
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_red_dark.png
new file mode 100644
index 0000000..c0cbef0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_red_light.png
new file mode 100644
index 0000000..e99df2c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_edittext.png
new file mode 100644
index 0000000..4b41717
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..f1d481d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..a586079
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..9467831
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressdialog_horizontal.png
new file mode 100644
index 0000000..68cc076
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_radio_button.png
new file mode 100644
index 0000000..db61da3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..ea35686
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..72b7077
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..c145b7a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..517f3d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..c31df16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..d184a4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..e4fcb80
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..ce1c817
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f9f41d4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_searchview.png
new file mode 100644
index 0000000..73c611f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_searchview_query.png
new file mode 100644
index 0000000..a61d007
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..139aacc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_seekbar_0.png
new file mode 100644
index 0000000..eb26838
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_seekbar_100.png
new file mode 100644
index 0000000..a5ae2ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_seekbar_50.png
new file mode 100644
index 0000000..8438db8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_spinner.png
new file mode 100644
index 0000000..713ea22
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_switch.png
new file mode 100644
index 0000000..001e106
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_switch_checked.png
new file mode 100644
index 0000000..79e75f3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_tabhost.png
new file mode 100644
index 0000000..eaeeae7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_textview.png
new file mode 100644
index 0000000..0d908a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_timepicker.png
new file mode 100644
index 0000000..8711542
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_toggle_button.png
new file mode 100644
index 0000000..cdfb783
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..2c604ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_zoomcontrols.png
new file mode 100644
index 0000000..21d17f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_alertdialog_list.png
new file mode 100644
index 0000000..2791d02
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_alertdialog_multichoice.png
new file mode 100644
index 0000000..8f6b6df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_alertdialog_onebutton.png
new file mode 100644
index 0000000..e0fabdf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_alertdialog_singlechoice.png
new file mode 100644
index 0000000..2aec266
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_alertdialog_threebuttons.png
new file mode 100644
index 0000000..9d73083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_alertdialog_twobuttons.png
new file mode 100644
index 0000000..34810fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_button.png
new file mode 100644
index 0000000..0478b2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_button_pressed.png
new file mode 100644
index 0000000..fa826df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..52ffc7f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_checkbox.png
new file mode 100644
index 0000000..2e1963f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..4eb39c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_chronometer.png
new file mode 100644
index 0000000..2a62d85
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..d1a3f99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..52a4de2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..f9439e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..4f8af58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_green_light.png
new file mode 100644
index 0000000..6ad2394
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..73f8418
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..90ab999
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_purple.png
new file mode 100644
index 0000000..30f2d23
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..c0cbef0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_red_light.png
new file mode 100644
index 0000000..e99df2c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_edittext.png
new file mode 100644
index 0000000..4b41717
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_alertdialog_list.png
new file mode 100644
index 0000000..2791d02
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_alertdialog_multichoice.png
new file mode 100644
index 0000000..8f6b6df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_alertdialog_onebutton.png
new file mode 100644
index 0000000..e0fabdf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_alertdialog_singlechoice.png
new file mode 100644
index 0000000..2aec266
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_alertdialog_threebuttons.png
new file mode 100644
index 0000000..9d73083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_alertdialog_twobuttons.png
new file mode 100644
index 0000000..34810fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_button.png
new file mode 100644
index 0000000..0478b2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
new file mode 100644
index 0000000..fa826df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..52ffc7f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
new file mode 100644
index 0000000..2e1963f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..4eb39c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
new file mode 100644
index 0000000..2a62d85
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..d1a3f99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..52a4de2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
new file mode 100644
index 0000000..f9439e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
new file mode 100644
index 0000000..4f8af58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
new file mode 100644
index 0000000..6ad2394
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..73f8418
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
new file mode 100644
index 0000000..90ab999
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
new file mode 100644
index 0000000..30f2d23
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
new file mode 100644
index 0000000..c0cbef0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
new file mode 100644
index 0000000..e99df2c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_edittext.png
new file mode 100644
index 0000000..4b41717
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..f1d481d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..a586079
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..9467831
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressdialog_horizontal.png
new file mode 100644
index 0000000..68cc076
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
new file mode 100644
index 0000000..db61da3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..ea35686
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..72b7077
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..c145b7a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..517f3d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..c31df16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..d184a4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..e4fcb80
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..ce1c817
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f9f41d4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_searchview.png
new file mode 100644
index 0000000..73c611f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
new file mode 100644
index 0000000..a61d007
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..139aacc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
new file mode 100644
index 0000000..eb26838
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
new file mode 100644
index 0000000..a5ae2ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
new file mode 100644
index 0000000..8438db8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_spinner.png
new file mode 100644
index 0000000..713ea22
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_switch.png
new file mode 100644
index 0000000..001e106
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
new file mode 100644
index 0000000..79e75f3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
new file mode 100644
index 0000000..eaeeae7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_textview.png
new file mode 100644
index 0000000..0d908a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
new file mode 100644
index 0000000..8711542
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
new file mode 100644
index 0000000..cdfb783
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..2c604ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_zoomcontrols.png
new file mode 100644
index 0000000..21d17f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..f1d481d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..a586079
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..9467831
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressdialog_horizontal.png
new file mode 100644
index 0000000..68cc076
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_radio_button.png
new file mode 100644
index 0000000..db61da3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..ea35686
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..72b7077
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..c145b7a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..517f3d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..c31df16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..d184a4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..e4fcb80
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..ce1c817
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f9f41d4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_searchview.png
new file mode 100644
index 0000000..73c611f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_searchview_query.png
new file mode 100644
index 0000000..a61d007
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..139aacc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..eb26838
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..a5ae2ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..8438db8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_spinner.png
new file mode 100644
index 0000000..713ea22
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_switch.png
new file mode 100644
index 0000000..001e106
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_switch_checked.png
new file mode 100644
index 0000000..79e75f3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_tabhost.png
new file mode 100644
index 0000000..eaeeae7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_textview.png
new file mode 100644
index 0000000..0d908a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_timepicker.png
new file mode 100644
index 0000000..8711542
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_toggle_button.png
new file mode 100644
index 0000000..cdfb783
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..2c604ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_zoomcontrols.png
new file mode 100644
index 0000000..21d17f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_horizontal_0.png
new file mode 100644
index 0000000..f1d481d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_horizontal_100.png
new file mode 100644
index 0000000..a586079
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_horizontal_50.png
new file mode 100644
index 0000000..9467831
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressdialog_horizontal.png
new file mode 100644
index 0000000..68cc076
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_radio_button.png
new file mode 100644
index 0000000..db61da3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_radio_button_checked.png
new file mode 100644
index 0000000..ea35686
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_radiogroup_horizontal.png
new file mode 100644
index 0000000..72b7077
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_radiogroup_vertical.png
new file mode 100644
index 0000000..c145b7a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_0.png
new file mode 100644
index 0000000..517f3d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_0_pressed.png
new file mode 100644
index 0000000..c31df16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_2point5.png
new file mode 100644
index 0000000..d184a4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..e4fcb80
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_5.png
new file mode 100644
index 0000000..ce1c817
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f9f41d4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_searchview.png
new file mode 100644
index 0000000..73c611f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_searchview_query.png
new file mode 100644
index 0000000..a61d007
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_searchview_query_hint.png
new file mode 100644
index 0000000..139aacc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_seekbar_0.png
new file mode 100644
index 0000000..eb26838
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_seekbar_100.png
new file mode 100644
index 0000000..a5ae2ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_seekbar_50.png
new file mode 100644
index 0000000..8438db8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_spinner.png
new file mode 100644
index 0000000..713ea22
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_switch.png
new file mode 100644
index 0000000..001e106
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_switch_checked.png
new file mode 100644
index 0000000..79e75f3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_tabhost.png
new file mode 100644
index 0000000..eaeeae7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_textview.png
new file mode 100644
index 0000000..0d908a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_timepicker.png
new file mode 100644
index 0000000..8711542
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_toggle_button.png
new file mode 100644
index 0000000..cdfb783
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_toggle_button_checked.png
new file mode 100644
index 0000000..2c604ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_zoomcontrols.png
new file mode 100644
index 0000000..21d17f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_alertdialog_list.png
new file mode 100644
index 0000000..2791d02
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_alertdialog_multichoice.png
new file mode 100644
index 0000000..8f6b6df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_alertdialog_onebutton.png
new file mode 100644
index 0000000..e0fabdf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_alertdialog_singlechoice.png
new file mode 100644
index 0000000..2aec266
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_alertdialog_threebuttons.png
new file mode 100644
index 0000000..9d73083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_alertdialog_twobuttons.png
new file mode 100644
index 0000000..34810fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_button.png
new file mode 100644
index 0000000..0478b2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_button_pressed.png
new file mode 100644
index 0000000..fa826df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..52ffc7f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_checkbox.png
new file mode 100644
index 0000000..2e1963f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_checkbox_checked.png
new file mode 100644
index 0000000..4eb39c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_chronometer.png
new file mode 100644
index 0000000..2a62d85
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_blue_bright.png
new file mode 100644
index 0000000..d1a3f99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_blue_dark.png
new file mode 100644
index 0000000..52a4de2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_blue_light.png
new file mode 100644
index 0000000..f9439e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_green_dark.png
new file mode 100644
index 0000000..4f8af58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_green_light.png
new file mode 100644
index 0000000..6ad2394
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_orange_dark.png
new file mode 100644
index 0000000..73f8418
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_orange_light.png
new file mode 100644
index 0000000..90ab999
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_purple.png
new file mode 100644
index 0000000..30f2d23
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_red_dark.png
new file mode 100644
index 0000000..c0cbef0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_red_light.png
new file mode 100644
index 0000000..e99df2c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_edittext.png
new file mode 100644
index 0000000..4b41717
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_alertdialog_list.png
new file mode 100644
index 0000000..2791d02
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_alertdialog_multichoice.png
new file mode 100644
index 0000000..8f6b6df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_alertdialog_onebutton.png
new file mode 100644
index 0000000..e0fabdf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_alertdialog_singlechoice.png
new file mode 100644
index 0000000..2aec266
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_alertdialog_threebuttons.png
new file mode 100644
index 0000000..9d73083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_alertdialog_twobuttons.png
new file mode 100644
index 0000000..34810fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_button.png
new file mode 100644
index 0000000..0478b2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
new file mode 100644
index 0000000..fa826df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..52ffc7f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
new file mode 100644
index 0000000..2e1963f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..4eb39c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
new file mode 100644
index 0000000..2a62d85
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..d1a3f99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..52a4de2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..f9439e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..4f8af58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
new file mode 100644
index 0000000..6ad2394
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..73f8418
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..90ab999
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
new file mode 100644
index 0000000..30f2d23
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..c0cbef0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
new file mode 100644
index 0000000..e99df2c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
new file mode 100644
index 0000000..4b41717
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..f1d481d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..a586079
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..9467831
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressdialog_horizontal.png
new file mode 100644
index 0000000..68cc076
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
new file mode 100644
index 0000000..db61da3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..ea35686
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..72b7077
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..c145b7a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..517f3d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..c31df16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..d184a4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..e4fcb80
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..ce1c817
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f9f41d4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
new file mode 100644
index 0000000..73c611f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
new file mode 100644
index 0000000..a61d007
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..139aacc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..eb26838
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..a5ae2ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..8438db8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
new file mode 100644
index 0000000..713ea22
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_switch.png
new file mode 100644
index 0000000..001e106
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
new file mode 100644
index 0000000..79e75f3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
new file mode 100644
index 0000000..eaeeae7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_textview.png
new file mode 100644
index 0000000..0d908a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
new file mode 100644
index 0000000..8711542
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
new file mode 100644
index 0000000..cdfb783
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..2c604ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_zoomcontrols.png
new file mode 100644
index 0000000..21d17f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
new file mode 100644
index 0000000..f1d481d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
new file mode 100644
index 0000000..a586079
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
new file mode 100644
index 0000000..9467831
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressdialog_horizontal.png
new file mode 100644
index 0000000..68cc076
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_radio_button.png
new file mode 100644
index 0000000..db61da3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_radio_button_checked.png
new file mode 100644
index 0000000..ea35686
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
new file mode 100644
index 0000000..72b7077
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
new file mode 100644
index 0000000..c145b7a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_0.png
new file mode 100644
index 0000000..517f3d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
new file mode 100644
index 0000000..c31df16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
new file mode 100644
index 0000000..d184a4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..e4fcb80
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_5.png
new file mode 100644
index 0000000..ce1c817
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f9f41d4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_searchview.png
new file mode 100644
index 0000000..73c611f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_searchview_query.png
new file mode 100644
index 0000000..a61d007
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_searchview_query_hint.png
new file mode 100644
index 0000000..139aacc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_seekbar_0.png
new file mode 100644
index 0000000..eb26838
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_seekbar_100.png
new file mode 100644
index 0000000..a5ae2ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_seekbar_50.png
new file mode 100644
index 0000000..8438db8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_spinner.png
new file mode 100644
index 0000000..713ea22
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_switch.png
new file mode 100644
index 0000000..001e106
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_switch_checked.png
new file mode 100644
index 0000000..79e75f3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_tabhost.png
new file mode 100644
index 0000000..eaeeae7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_textview.png
new file mode 100644
index 0000000..0d908a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_timepicker.png
new file mode 100644
index 0000000..8711542
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_toggle_button.png
new file mode 100644
index 0000000..cdfb783
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_toggle_button_checked.png
new file mode 100644
index 0000000..2c604ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_zoomcontrols.png
new file mode 100644
index 0000000..21d17f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_edittext.png
new file mode 100644
index 0000000..4b41717
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_alertdialog_list.png
new file mode 100644
index 0000000..2089f47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_alertdialog_multichoice.png
new file mode 100644
index 0000000..4abe60e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_alertdialog_onebutton.png
new file mode 100644
index 0000000..88175a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_alertdialog_singlechoice.png
new file mode 100644
index 0000000..709dfb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_alertdialog_threebuttons.png
new file mode 100644
index 0000000..5c018d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_alertdialog_twobuttons.png
new file mode 100644
index 0000000..18569e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_button.png
new file mode 100644
index 0000000..06fae2d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_button_pressed.png
new file mode 100644
index 0000000..415f4cb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_calendar_view.png
new file mode 100644
index 0000000..78b54b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_checkbox.png
new file mode 100644
index 0000000..9cd44e5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_checkbox_checked.png
new file mode 100644
index 0000000..4d87f34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_chronometer.png
new file mode 100644
index 0000000..90229f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_blue_bright.png
new file mode 100644
index 0000000..d1a3f99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_blue_dark.png
new file mode 100644
index 0000000..52a4de2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_blue_light.png
new file mode 100644
index 0000000..f9439e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_green_dark.png
new file mode 100644
index 0000000..4f8af58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_green_light.png
new file mode 100644
index 0000000..6ad2394
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_orange_dark.png
new file mode 100644
index 0000000..73f8418
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_orange_light.png
new file mode 100644
index 0000000..90ab999
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_purple.png
new file mode 100644
index 0000000..30f2d23
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_red_dark.png
new file mode 100644
index 0000000..c0cbef0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_red_light.png
new file mode 100644
index 0000000..e99df2c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_edittext.png
new file mode 100644
index 0000000..e24fc71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_horizontal_0.png
new file mode 100644
index 0000000..efecebb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_horizontal_100.png
new file mode 100644
index 0000000..76245b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_horizontal_50.png
new file mode 100644
index 0000000..16c7322
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressdialog_horizontal.png
new file mode 100644
index 0000000..c049776
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_radio_button.png
new file mode 100644
index 0000000..e1fa030
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_radio_button_checked.png
new file mode 100644
index 0000000..e998ddc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_radiogroup_horizontal.png
new file mode 100644
index 0000000..bc60c67
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_radiogroup_vertical.png
new file mode 100644
index 0000000..13033aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_0.png
new file mode 100644
index 0000000..340ff5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_0_pressed.png
new file mode 100644
index 0000000..60c731e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_2point5.png
new file mode 100644
index 0000000..260866a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..1ba8025
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_5.png
new file mode 100644
index 0000000..c1f38bd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c981c8a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_searchview.png
new file mode 100644
index 0000000..43c9f5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_searchview_query.png
new file mode 100644
index 0000000..ee24814
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_searchview_query_hint.png
new file mode 100644
index 0000000..1a543aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_seekbar_0.png
new file mode 100644
index 0000000..c61a55c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_seekbar_100.png
new file mode 100644
index 0000000..a5ae2ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_seekbar_50.png
new file mode 100644
index 0000000..c45851e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_spinner.png
new file mode 100644
index 0000000..2bb082b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_switch.png
new file mode 100644
index 0000000..a7db1ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_switch_checked.png
new file mode 100644
index 0000000..469effd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_tabhost.png
new file mode 100644
index 0000000..361cf06
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_textview.png
new file mode 100644
index 0000000..821c866
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_timepicker.png
new file mode 100644
index 0000000..584e0fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_toggle_button.png
new file mode 100644
index 0000000..c9e16e3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_toggle_button_checked.png
new file mode 100644
index 0000000..c974143
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_zoomcontrols.png
new file mode 100644
index 0000000..21d17f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_alertdialog_list.png
new file mode 100644
index 0000000..2089f47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_alertdialog_multichoice.png
new file mode 100644
index 0000000..4abe60e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_alertdialog_onebutton.png
new file mode 100644
index 0000000..88175a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_alertdialog_singlechoice.png
new file mode 100644
index 0000000..709dfb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_alertdialog_threebuttons.png
new file mode 100644
index 0000000..5c018d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_alertdialog_twobuttons.png
new file mode 100644
index 0000000..18569e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_button.png
new file mode 100644
index 0000000..06fae2d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_button_pressed.png
new file mode 100644
index 0000000..415f4cb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_calendar_view.png
new file mode 100644
index 0000000..78b54b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_checkbox.png
new file mode 100644
index 0000000..9cd44e5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_checkbox_checked.png
new file mode 100644
index 0000000..4d87f34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_chronometer.png
new file mode 100644
index 0000000..90229f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_color_blue_bright.png
new file mode 100644
index 0000000..d1a3f99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_color_blue_dark.png
new file mode 100644
index 0000000..52a4de2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_color_blue_light.png
new file mode 100644
index 0000000..f9439e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_color_green_dark.png
new file mode 100644
index 0000000..4f8af58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_color_green_light.png
new file mode 100644
index 0000000..6ad2394
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_color_orange_dark.png
new file mode 100644
index 0000000..73f8418
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_color_orange_light.png
new file mode 100644
index 0000000..90ab999
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_color_purple.png
new file mode 100644
index 0000000..30f2d23
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_color_red_dark.png
new file mode 100644
index 0000000..c0cbef0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_color_red_light.png
new file mode 100644
index 0000000..e99df2c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_alertdialog_list.png
new file mode 100644
index 0000000..2089f47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_alertdialog_multichoice.png
new file mode 100644
index 0000000..4abe60e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_alertdialog_onebutton.png
new file mode 100644
index 0000000..88175a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_alertdialog_singlechoice.png
new file mode 100644
index 0000000..709dfb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_alertdialog_threebuttons.png
new file mode 100644
index 0000000..5c018d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_alertdialog_twobuttons.png
new file mode 100644
index 0000000..18569e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_button.png
new file mode 100644
index 0000000..06fae2d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_button_pressed.png
new file mode 100644
index 0000000..415f4cb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_calendar_view.png
new file mode 100644
index 0000000..78b54b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_checkbox.png
new file mode 100644
index 0000000..9cd44e5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_checkbox_checked.png
new file mode 100644
index 0000000..4d87f34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_chronometer.png
new file mode 100644
index 0000000..90229f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_blue_bright.png
new file mode 100644
index 0000000..d1a3f99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_blue_dark.png
new file mode 100644
index 0000000..52a4de2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_blue_light.png
new file mode 100644
index 0000000..f9439e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_green_dark.png
new file mode 100644
index 0000000..4f8af58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_green_light.png
new file mode 100644
index 0000000..6ad2394
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_orange_dark.png
new file mode 100644
index 0000000..73f8418
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_orange_light.png
new file mode 100644
index 0000000..90ab999
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_purple.png
new file mode 100644
index 0000000..30f2d23
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_red_dark.png
new file mode 100644
index 0000000..c0cbef0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_red_light.png
new file mode 100644
index 0000000..e99df2c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_edittext.png
new file mode 100644
index 0000000..e24fc71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..efecebb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..76245b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..16c7322
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressdialog_horizontal.png
new file mode 100644
index 0000000..c049776
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_radio_button.png
new file mode 100644
index 0000000..e1fa030
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_radio_button_checked.png
new file mode 100644
index 0000000..e998ddc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..bc60c67
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..13033aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_0.png
new file mode 100644
index 0000000..340ff5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..60c731e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..260866a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..1ba8025
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_5.png
new file mode 100644
index 0000000..c1f38bd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c981c8a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_searchview.png
new file mode 100644
index 0000000..43c9f5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_searchview_query.png
new file mode 100644
index 0000000..ee24814
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..1a543aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_seekbar_0.png
new file mode 100644
index 0000000..c61a55c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_seekbar_100.png
new file mode 100644
index 0000000..a5ae2ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_seekbar_50.png
new file mode 100644
index 0000000..c45851e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_spinner.png
new file mode 100644
index 0000000..2bb082b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_switch.png
new file mode 100644
index 0000000..a7db1ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_switch_checked.png
new file mode 100644
index 0000000..469effd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_tabhost.png
new file mode 100644
index 0000000..361cf06
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_textview.png
new file mode 100644
index 0000000..821c866
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_timepicker.png
new file mode 100644
index 0000000..584e0fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_toggle_button.png
new file mode 100644
index 0000000..c9e16e3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..c974143
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_zoomcontrols.png
new file mode 100644
index 0000000..21d17f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_alertdialog_list.png
new file mode 100644
index 0000000..2089f47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_alertdialog_multichoice.png
new file mode 100644
index 0000000..4abe60e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_alertdialog_onebutton.png
new file mode 100644
index 0000000..88175a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_alertdialog_singlechoice.png
new file mode 100644
index 0000000..709dfb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_alertdialog_threebuttons.png
new file mode 100644
index 0000000..5c018d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_alertdialog_twobuttons.png
new file mode 100644
index 0000000..18569e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_button.png
new file mode 100644
index 0000000..06fae2d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_button_pressed.png
new file mode 100644
index 0000000..415f4cb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_calendar_view.png
new file mode 100644
index 0000000..78b54b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_checkbox.png
new file mode 100644
index 0000000..9cd44e5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_checkbox_checked.png
new file mode 100644
index 0000000..4d87f34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_chronometer.png
new file mode 100644
index 0000000..90229f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_blue_bright.png
new file mode 100644
index 0000000..d1a3f99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_blue_dark.png
new file mode 100644
index 0000000..52a4de2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_blue_light.png
new file mode 100644
index 0000000..f9439e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_green_dark.png
new file mode 100644
index 0000000..4f8af58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_green_light.png
new file mode 100644
index 0000000..6ad2394
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_orange_dark.png
new file mode 100644
index 0000000..73f8418
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_orange_light.png
new file mode 100644
index 0000000..90ab999
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_purple.png
new file mode 100644
index 0000000..30f2d23
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_red_dark.png
new file mode 100644
index 0000000..c0cbef0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_red_light.png
new file mode 100644
index 0000000..e99df2c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_edittext.png
new file mode 100644
index 0000000..e24fc71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_alertdialog_list.png
new file mode 100644
index 0000000..2089f47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_alertdialog_multichoice.png
new file mode 100644
index 0000000..4abe60e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_alertdialog_onebutton.png
new file mode 100644
index 0000000..88175a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_alertdialog_singlechoice.png
new file mode 100644
index 0000000..709dfb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_alertdialog_threebuttons.png
new file mode 100644
index 0000000..5c018d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_alertdialog_twobuttons.png
new file mode 100644
index 0000000..18569e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_button.png
new file mode 100644
index 0000000..06fae2d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_button_pressed.png
new file mode 100644
index 0000000..415f4cb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..78b54b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_checkbox.png
new file mode 100644
index 0000000..9cd44e5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..4d87f34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_chronometer.png
new file mode 100644
index 0000000..90229f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..d1a3f99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..52a4de2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_blue_light.png
new file mode 100644
index 0000000..f9439e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_green_dark.png
new file mode 100644
index 0000000..4f8af58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_green_light.png
new file mode 100644
index 0000000..6ad2394
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..73f8418
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_orange_light.png
new file mode 100644
index 0000000..90ab999
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_purple.png
new file mode 100644
index 0000000..30f2d23
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_red_dark.png
new file mode 100644
index 0000000..c0cbef0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_red_light.png
new file mode 100644
index 0000000..e99df2c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_edittext.png
new file mode 100644
index 0000000..e24fc71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..efecebb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..76245b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..16c7322
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressdialog_horizontal.png
new file mode 100644
index 0000000..c049776
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_radio_button.png
new file mode 100644
index 0000000..e1fa030
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..e998ddc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..bc60c67
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..13033aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..340ff5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..60c731e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..260866a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..1ba8025
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..c1f38bd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c981c8a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_searchview.png
new file mode 100644
index 0000000..43c9f5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_searchview_query.png
new file mode 100644
index 0000000..ee24814
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..1a543aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_seekbar_0.png
new file mode 100644
index 0000000..c61a55c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_seekbar_100.png
new file mode 100644
index 0000000..a5ae2ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_seekbar_50.png
new file mode 100644
index 0000000..c45851e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_spinner.png
new file mode 100644
index 0000000..2bb082b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_switch.png
new file mode 100644
index 0000000..a7db1ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_switch_checked.png
new file mode 100644
index 0000000..469effd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_tabhost.png
new file mode 100644
index 0000000..361cf06
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_textview.png
new file mode 100644
index 0000000..821c866
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_timepicker.png
new file mode 100644
index 0000000..584e0fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_toggle_button.png
new file mode 100644
index 0000000..c9e16e3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..c974143
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_zoomcontrols.png
new file mode 100644
index 0000000..21d17f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_alertdialog_list.png
new file mode 100644
index 0000000..2089f47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_alertdialog_multichoice.png
new file mode 100644
index 0000000..4abe60e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_alertdialog_onebutton.png
new file mode 100644
index 0000000..88175a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_alertdialog_singlechoice.png
new file mode 100644
index 0000000..709dfb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_alertdialog_threebuttons.png
new file mode 100644
index 0000000..5c018d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_alertdialog_twobuttons.png
new file mode 100644
index 0000000..18569e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_button.png
new file mode 100644
index 0000000..06fae2d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_button_pressed.png
new file mode 100644
index 0000000..415f4cb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..78b54b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_checkbox.png
new file mode 100644
index 0000000..9cd44e5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..4d87f34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_chronometer.png
new file mode 100644
index 0000000..90229f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..d1a3f99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..52a4de2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..f9439e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..4f8af58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_green_light.png
new file mode 100644
index 0000000..6ad2394
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..73f8418
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..90ab999
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_purple.png
new file mode 100644
index 0000000..30f2d23
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..c0cbef0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_red_light.png
new file mode 100644
index 0000000..e99df2c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_edittext.png
new file mode 100644
index 0000000..e24fc71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_list.png
new file mode 100644
index 0000000..2089f47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_multichoice.png
new file mode 100644
index 0000000..4abe60e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_onebutton.png
new file mode 100644
index 0000000..88175a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_singlechoice.png
new file mode 100644
index 0000000..709dfb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_threebuttons.png
new file mode 100644
index 0000000..5c018d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_twobuttons.png
new file mode 100644
index 0000000..18569e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_button.png
new file mode 100644
index 0000000..06fae2d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
new file mode 100644
index 0000000..415f4cb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..78b54b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
new file mode 100644
index 0000000..9cd44e5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..4d87f34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
new file mode 100644
index 0000000..90229f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..d1a3f99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..52a4de2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
new file mode 100644
index 0000000..f9439e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
new file mode 100644
index 0000000..4f8af58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
new file mode 100644
index 0000000..6ad2394
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..73f8418
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
new file mode 100644
index 0000000..90ab999
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
new file mode 100644
index 0000000..30f2d23
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
new file mode 100644
index 0000000..c0cbef0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
new file mode 100644
index 0000000..e99df2c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
new file mode 100644
index 0000000..e24fc71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..efecebb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..76245b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..16c7322
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressdialog_horizontal.png
new file mode 100644
index 0000000..c049776
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
new file mode 100644
index 0000000..e1fa030
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..e998ddc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..bc60c67
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..13033aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..340ff5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..60c731e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..260866a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..1ba8025
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..c1f38bd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c981c8a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
new file mode 100644
index 0000000..43c9f5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
new file mode 100644
index 0000000..ee24814
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..1a543aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
new file mode 100644
index 0000000..c61a55c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
new file mode 100644
index 0000000..a5ae2ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
new file mode 100644
index 0000000..c45851e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
new file mode 100644
index 0000000..2bb082b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
new file mode 100644
index 0000000..a7db1ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
new file mode 100644
index 0000000..469effd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
new file mode 100644
index 0000000..361cf06
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
new file mode 100644
index 0000000..821c866
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
new file mode 100644
index 0000000..584e0fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
new file mode 100644
index 0000000..c9e16e3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..c974143
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_zoomcontrols.png
new file mode 100644
index 0000000..21d17f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..efecebb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..76245b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..16c7322
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressdialog_horizontal.png
new file mode 100644
index 0000000..c049776
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_radio_button.png
new file mode 100644
index 0000000..e1fa030
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..e998ddc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..bc60c67
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..13033aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..340ff5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..60c731e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..260866a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..1ba8025
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..c1f38bd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c981c8a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_searchview.png
new file mode 100644
index 0000000..43c9f5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_searchview_query.png
new file mode 100644
index 0000000..ee24814
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..1a543aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..c61a55c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..a5ae2ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..c45851e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_spinner.png
new file mode 100644
index 0000000..2bb082b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_switch.png
new file mode 100644
index 0000000..a7db1ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_switch_checked.png
new file mode 100644
index 0000000..469effd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_tabhost.png
new file mode 100644
index 0000000..361cf06
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_textview.png
new file mode 100644
index 0000000..821c866
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_timepicker.png
new file mode 100644
index 0000000..584e0fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_toggle_button.png
new file mode 100644
index 0000000..c9e16e3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..c974143
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_zoomcontrols.png
new file mode 100644
index 0000000..21d17f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_horizontal_0.png
new file mode 100644
index 0000000..efecebb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_horizontal_100.png
new file mode 100644
index 0000000..76245b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_horizontal_50.png
new file mode 100644
index 0000000..16c7322
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressdialog_horizontal.png
new file mode 100644
index 0000000..c049776
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_radio_button.png
new file mode 100644
index 0000000..e1fa030
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_radio_button_checked.png
new file mode 100644
index 0000000..e998ddc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_radiogroup_horizontal.png
new file mode 100644
index 0000000..bc60c67
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_radiogroup_vertical.png
new file mode 100644
index 0000000..13033aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_0.png
new file mode 100644
index 0000000..340ff5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_0_pressed.png
new file mode 100644
index 0000000..60c731e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_2point5.png
new file mode 100644
index 0000000..260866a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..1ba8025
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_5.png
new file mode 100644
index 0000000..c1f38bd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c981c8a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_searchview.png
new file mode 100644
index 0000000..43c9f5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_searchview_query.png
new file mode 100644
index 0000000..ee24814
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_searchview_query_hint.png
new file mode 100644
index 0000000..1a543aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_seekbar_0.png
new file mode 100644
index 0000000..c61a55c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_seekbar_100.png
new file mode 100644
index 0000000..a5ae2ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_seekbar_50.png
new file mode 100644
index 0000000..c45851e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_spinner.png
new file mode 100644
index 0000000..2bb082b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_switch.png
new file mode 100644
index 0000000..a7db1ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_switch_checked.png
new file mode 100644
index 0000000..469effd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_tabhost.png
new file mode 100644
index 0000000..361cf06
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_textview.png
new file mode 100644
index 0000000..821c866
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_timepicker.png
new file mode 100644
index 0000000..584e0fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_toggle_button.png
new file mode 100644
index 0000000..c9e16e3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_toggle_button_checked.png
new file mode 100644
index 0000000..c974143
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_zoomcontrols.png
new file mode 100644
index 0000000..21d17f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_alertdialog_list.png
new file mode 100644
index 0000000..2089f47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_alertdialog_multichoice.png
new file mode 100644
index 0000000..4abe60e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_alertdialog_onebutton.png
new file mode 100644
index 0000000..88175a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_alertdialog_singlechoice.png
new file mode 100644
index 0000000..709dfb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_alertdialog_threebuttons.png
new file mode 100644
index 0000000..5c018d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_alertdialog_twobuttons.png
new file mode 100644
index 0000000..18569e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_button.png
new file mode 100644
index 0000000..06fae2d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_button_pressed.png
new file mode 100644
index 0000000..415f4cb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..78b54b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_checkbox.png
new file mode 100644
index 0000000..9cd44e5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
new file mode 100644
index 0000000..4d87f34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_chronometer.png
new file mode 100644
index 0000000..90229f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
new file mode 100644
index 0000000..d1a3f99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
new file mode 100644
index 0000000..52a4de2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_blue_light.png
new file mode 100644
index 0000000..f9439e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_green_dark.png
new file mode 100644
index 0000000..4f8af58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_green_light.png
new file mode 100644
index 0000000..6ad2394
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
new file mode 100644
index 0000000..73f8418
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_orange_light.png
new file mode 100644
index 0000000..90ab999
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_purple.png
new file mode 100644
index 0000000..30f2d23
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_red_dark.png
new file mode 100644
index 0000000..c0cbef0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_red_light.png
new file mode 100644
index 0000000..e99df2c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_edittext.png
new file mode 100644
index 0000000..e24fc71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_list.png
new file mode 100644
index 0000000..2089f47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_multichoice.png
new file mode 100644
index 0000000..4abe60e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_onebutton.png
new file mode 100644
index 0000000..88175a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_singlechoice.png
new file mode 100644
index 0000000..709dfb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_threebuttons.png
new file mode 100644
index 0000000..5c018d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_twobuttons.png
new file mode 100644
index 0000000..18569e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
new file mode 100644
index 0000000..06fae2d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
new file mode 100644
index 0000000..415f4cb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..78b54b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
new file mode 100644
index 0000000..9cd44e5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..4d87f34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
new file mode 100644
index 0000000..90229f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..d1a3f99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..52a4de2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..f9439e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..4f8af58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
new file mode 100644
index 0000000..6ad2394
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..73f8418
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..90ab999
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
new file mode 100644
index 0000000..30f2d23
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..c0cbef0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
new file mode 100644
index 0000000..e99df2c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
new file mode 100644
index 0000000..e24fc71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..efecebb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..76245b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..16c7322
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressdialog_horizontal.png
new file mode 100644
index 0000000..c049776
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
new file mode 100644
index 0000000..e1fa030
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..e998ddc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..bc60c67
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..13033aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..340ff5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..60c731e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..260866a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..1ba8025
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..c1f38bd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c981c8a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
new file mode 100644
index 0000000..43c9f5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
new file mode 100644
index 0000000..ee24814
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..1a543aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..c61a55c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..a5ae2ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..c45851e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
new file mode 100644
index 0000000..2bb082b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
new file mode 100644
index 0000000..a7db1ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
new file mode 100644
index 0000000..469effd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
new file mode 100644
index 0000000..361cf06
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
new file mode 100644
index 0000000..821c866
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
new file mode 100644
index 0000000..584e0fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
new file mode 100644
index 0000000..c9e16e3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..c974143
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_zoomcontrols.png
new file mode 100644
index 0000000..21d17f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
new file mode 100644
index 0000000..efecebb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
new file mode 100644
index 0000000..76245b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
new file mode 100644
index 0000000..16c7322
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressdialog_horizontal.png
new file mode 100644
index 0000000..c049776
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_radio_button.png
new file mode 100644
index 0000000..e1fa030
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
new file mode 100644
index 0000000..e998ddc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
new file mode 100644
index 0000000..bc60c67
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
new file mode 100644
index 0000000..13033aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
new file mode 100644
index 0000000..340ff5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
new file mode 100644
index 0000000..60c731e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
new file mode 100644
index 0000000..260866a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..1ba8025
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
new file mode 100644
index 0000000..c1f38bd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c981c8a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_searchview.png
new file mode 100644
index 0000000..43c9f5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_searchview_query.png
new file mode 100644
index 0000000..ee24814
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
new file mode 100644
index 0000000..1a543aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_seekbar_0.png
new file mode 100644
index 0000000..c61a55c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_seekbar_100.png
new file mode 100644
index 0000000..a5ae2ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_seekbar_50.png
new file mode 100644
index 0000000..c45851e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_spinner.png
new file mode 100644
index 0000000..2bb082b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_switch.png
new file mode 100644
index 0000000..a7db1ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_switch_checked.png
new file mode 100644
index 0000000..469effd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_tabhost.png
new file mode 100644
index 0000000..361cf06
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_textview.png
new file mode 100644
index 0000000..821c866
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_timepicker.png
new file mode 100644
index 0000000..584e0fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_toggle_button.png
new file mode 100644
index 0000000..c9e16e3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
new file mode 100644
index 0000000..c974143
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_zoomcontrols.png
new file mode 100644
index 0000000..21d17f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_edittext.png
new file mode 100644
index 0000000..e24fc71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_alertdialog_list.png
new file mode 100644
index 0000000..2089f47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_alertdialog_multichoice.png
new file mode 100644
index 0000000..4abe60e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_alertdialog_onebutton.png
new file mode 100644
index 0000000..88175a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_alertdialog_singlechoice.png
new file mode 100644
index 0000000..709dfb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_alertdialog_threebuttons.png
new file mode 100644
index 0000000..5c018d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_alertdialog_twobuttons.png
new file mode 100644
index 0000000..18569e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_button.png
new file mode 100644
index 0000000..06fae2d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_button_pressed.png
new file mode 100644
index 0000000..415f4cb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_calendar_view.png
new file mode 100644
index 0000000..78b54b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_checkbox.png
new file mode 100644
index 0000000..9cd44e5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..4d87f34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_chronometer.png
new file mode 100644
index 0000000..90229f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..d1a3f99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..52a4de2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..f9439e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..4f8af58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_green_light.png
new file mode 100644
index 0000000..6ad2394
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..73f8418
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..90ab999
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_purple.png
new file mode 100644
index 0000000..30f2d23
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..c0cbef0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_red_light.png
new file mode 100644
index 0000000..e99df2c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_edittext.png
new file mode 100644
index 0000000..e24fc71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_alertdialog_list.png
new file mode 100644
index 0000000..2089f47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_alertdialog_multichoice.png
new file mode 100644
index 0000000..4abe60e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_alertdialog_onebutton.png
new file mode 100644
index 0000000..88175a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_alertdialog_singlechoice.png
new file mode 100644
index 0000000..709dfb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_alertdialog_threebuttons.png
new file mode 100644
index 0000000..5c018d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_alertdialog_twobuttons.png
new file mode 100644
index 0000000..18569e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_button.png
new file mode 100644
index 0000000..06fae2d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
new file mode 100644
index 0000000..415f4cb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..78b54b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_checkbox.png
new file mode 100644
index 0000000..9cd44e5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
new file mode 100644
index 0000000..4d87f34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_chronometer.png
new file mode 100644
index 0000000..90229f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
new file mode 100644
index 0000000..d1a3f99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
new file mode 100644
index 0000000..52a4de2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
new file mode 100644
index 0000000..f9439e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
new file mode 100644
index 0000000..4f8af58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
new file mode 100644
index 0000000..6ad2394
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
new file mode 100644
index 0000000..73f8418
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
new file mode 100644
index 0000000..90ab999
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_purple.png
new file mode 100644
index 0000000..30f2d23
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
new file mode 100644
index 0000000..c0cbef0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
new file mode 100644
index 0000000..e99df2c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_edittext.png
new file mode 100644
index 0000000..e24fc71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
new file mode 100644
index 0000000..efecebb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
new file mode 100644
index 0000000..76245b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
new file mode 100644
index 0000000..16c7322
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressdialog_horizontal.png
new file mode 100644
index 0000000..c049776
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_radio_button.png
new file mode 100644
index 0000000..e1fa030
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
new file mode 100644
index 0000000..e998ddc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
new file mode 100644
index 0000000..bc60c67
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
new file mode 100644
index 0000000..13033aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
new file mode 100644
index 0000000..340ff5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
new file mode 100644
index 0000000..60c731e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
new file mode 100644
index 0000000..260866a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..1ba8025
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
new file mode 100644
index 0000000..c1f38bd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c981c8a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_searchview.png
new file mode 100644
index 0000000..43c9f5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
new file mode 100644
index 0000000..ee24814
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
new file mode 100644
index 0000000..1a543aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
new file mode 100644
index 0000000..c61a55c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
new file mode 100644
index 0000000..a5ae2ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
new file mode 100644
index 0000000..c45851e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_spinner.png
new file mode 100644
index 0000000..2bb082b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_switch.png
new file mode 100644
index 0000000..a7db1ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
new file mode 100644
index 0000000..469effd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_tabhost.png
new file mode 100644
index 0000000..361cf06
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_textview.png
new file mode 100644
index 0000000..821c866
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_timepicker.png
new file mode 100644
index 0000000..584e0fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
new file mode 100644
index 0000000..c9e16e3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
new file mode 100644
index 0000000..c974143
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_zoomcontrols.png
new file mode 100644
index 0000000..21d17f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..efecebb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..76245b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..16c7322
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressdialog_horizontal.png
new file mode 100644
index 0000000..c049776
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_radio_button.png
new file mode 100644
index 0000000..e1fa030
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..e998ddc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..bc60c67
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..13033aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..340ff5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..60c731e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..260866a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..1ba8025
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..c1f38bd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c981c8a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_searchview.png
new file mode 100644
index 0000000..43c9f5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_searchview_query.png
new file mode 100644
index 0000000..ee24814
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..1a543aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..c61a55c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..a5ae2ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..c45851e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_spinner.png
new file mode 100644
index 0000000..2bb082b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_switch.png
new file mode 100644
index 0000000..a7db1ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_switch_checked.png
new file mode 100644
index 0000000..469effd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_tabhost.png
new file mode 100644
index 0000000..361cf06
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_textview.png
new file mode 100644
index 0000000..821c866
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_timepicker.png
new file mode 100644
index 0000000..584e0fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_toggle_button.png
new file mode 100644
index 0000000..c9e16e3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..c974143
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_zoomcontrols.png
new file mode 100644
index 0000000..21d17f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_alertdialog_list.png
new file mode 100644
index 0000000..2089f47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_alertdialog_multichoice.png
new file mode 100644
index 0000000..4abe60e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_alertdialog_onebutton.png
new file mode 100644
index 0000000..88175a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_alertdialog_singlechoice.png
new file mode 100644
index 0000000..709dfb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_alertdialog_threebuttons.png
new file mode 100644
index 0000000..5c018d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_alertdialog_twobuttons.png
new file mode 100644
index 0000000..18569e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_button.png
new file mode 100644
index 0000000..06fae2d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_button_pressed.png
new file mode 100644
index 0000000..415f4cb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_calendar_view.png
new file mode 100644
index 0000000..78b54b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_checkbox.png
new file mode 100644
index 0000000..9cd44e5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_checkbox_checked.png
new file mode 100644
index 0000000..4d87f34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_chronometer.png
new file mode 100644
index 0000000..90229f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_blue_bright.png
new file mode 100644
index 0000000..d1a3f99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_blue_dark.png
new file mode 100644
index 0000000..52a4de2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_blue_light.png
new file mode 100644
index 0000000..f9439e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_green_dark.png
new file mode 100644
index 0000000..4f8af58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_green_light.png
new file mode 100644
index 0000000..6ad2394
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_orange_dark.png
new file mode 100644
index 0000000..73f8418
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_orange_light.png
new file mode 100644
index 0000000..90ab999
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_purple.png
new file mode 100644
index 0000000..30f2d23
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_red_dark.png
new file mode 100644
index 0000000..c0cbef0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_red_light.png
new file mode 100644
index 0000000..e99df2c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_edittext.png
new file mode 100644
index 0000000..e24fc71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_horizontal_0.png
new file mode 100644
index 0000000..efecebb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_horizontal_100.png
new file mode 100644
index 0000000..76245b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_horizontal_50.png
new file mode 100644
index 0000000..16c7322
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressdialog_horizontal.png
new file mode 100644
index 0000000..c049776
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_radio_button.png
new file mode 100644
index 0000000..e1fa030
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_radio_button_checked.png
new file mode 100644
index 0000000..e998ddc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_radiogroup_horizontal.png
new file mode 100644
index 0000000..bc60c67
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_radiogroup_vertical.png
new file mode 100644
index 0000000..13033aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_0.png
new file mode 100644
index 0000000..340ff5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_0_pressed.png
new file mode 100644
index 0000000..60c731e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_2point5.png
new file mode 100644
index 0000000..260866a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..1ba8025
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_5.png
new file mode 100644
index 0000000..c1f38bd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c981c8a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_searchview.png
new file mode 100644
index 0000000..43c9f5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_searchview_query.png
new file mode 100644
index 0000000..ee24814
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_searchview_query_hint.png
new file mode 100644
index 0000000..1a543aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_seekbar_0.png
new file mode 100644
index 0000000..c61a55c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_seekbar_100.png
new file mode 100644
index 0000000..a5ae2ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_seekbar_50.png
new file mode 100644
index 0000000..c45851e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_spinner.png
new file mode 100644
index 0000000..2bb082b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_switch.png
new file mode 100644
index 0000000..a7db1ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_switch_checked.png
new file mode 100644
index 0000000..469effd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_tabhost.png
new file mode 100644
index 0000000..361cf06
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_textview.png
new file mode 100644
index 0000000..821c866
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_timepicker.png
new file mode 100644
index 0000000..584e0fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_toggle_button.png
new file mode 100644
index 0000000..c9e16e3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_toggle_button_checked.png
new file mode 100644
index 0000000..c974143
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_zoomcontrols.png
new file mode 100644
index 0000000..21d17f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_horizontal_0.png
new file mode 100644
index 0000000..efecebb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_horizontal_100.png
new file mode 100644
index 0000000..76245b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_horizontal_50.png
new file mode 100644
index 0000000..16c7322
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_progressdialog_horizontal.png
new file mode 100644
index 0000000..c049776
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_radio_button.png
new file mode 100644
index 0000000..e1fa030
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_radio_button_checked.png
new file mode 100644
index 0000000..e998ddc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_radiogroup_horizontal.png
new file mode 100644
index 0000000..bc60c67
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_radiogroup_vertical.png
new file mode 100644
index 0000000..13033aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_0.png
new file mode 100644
index 0000000..340ff5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_0_pressed.png
new file mode 100644
index 0000000..60c731e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_2point5.png
new file mode 100644
index 0000000..260866a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..1ba8025
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_5.png
new file mode 100644
index 0000000..c1f38bd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c981c8a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_searchview.png
new file mode 100644
index 0000000..43c9f5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_searchview_query.png
new file mode 100644
index 0000000..ee24814
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_searchview_query_hint.png
new file mode 100644
index 0000000..1a543aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_seekbar_0.png
new file mode 100644
index 0000000..c61a55c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_seekbar_100.png
new file mode 100644
index 0000000..a5ae2ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_seekbar_50.png
new file mode 100644
index 0000000..c45851e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_spinner.png
new file mode 100644
index 0000000..2bb082b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_switch.png
new file mode 100644
index 0000000..a7db1ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_switch_checked.png
new file mode 100644
index 0000000..469effd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_tabhost.png
new file mode 100644
index 0000000..361cf06
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_textview.png
new file mode 100644
index 0000000..821c866
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_timepicker.png
new file mode 100644
index 0000000..584e0fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_toggle_button.png
new file mode 100644
index 0000000..c9e16e3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_toggle_button_checked.png
new file mode 100644
index 0000000..c974143
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_zoomcontrols.png
new file mode 100644
index 0000000..21d17f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_alertdialog_list.png
new file mode 100644
index 0000000..2791d02
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_alertdialog_multichoice.png
new file mode 100644
index 0000000..8f6b6df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_alertdialog_onebutton.png
new file mode 100644
index 0000000..e0fabdf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_alertdialog_singlechoice.png
new file mode 100644
index 0000000..2aec266
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_alertdialog_threebuttons.png
new file mode 100644
index 0000000..9d73083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_alertdialog_twobuttons.png
new file mode 100644
index 0000000..34810fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_button.png
new file mode 100644
index 0000000..0478b2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_button_pressed.png
new file mode 100644
index 0000000..fa826df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_calendar_view.png
new file mode 100644
index 0000000..52ffc7f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_checkbox.png
new file mode 100644
index 0000000..2e1963f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..4eb39c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_chronometer.png
new file mode 100644
index 0000000..2a62d85
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..d1a3f99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..52a4de2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..f9439e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..4f8af58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_green_light.png
new file mode 100644
index 0000000..6ad2394
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..73f8418
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..90ab999
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_purple.png
new file mode 100644
index 0000000..30f2d23
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..c0cbef0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_red_light.png
new file mode 100644
index 0000000..e99df2c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_edittext.png
new file mode 100644
index 0000000..4b41717
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_alertdialog_list.png
new file mode 100644
index 0000000..2791d02
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_alertdialog_multichoice.png
new file mode 100644
index 0000000..8f6b6df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_alertdialog_onebutton.png
new file mode 100644
index 0000000..e0fabdf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_alertdialog_singlechoice.png
new file mode 100644
index 0000000..2aec266
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_alertdialog_threebuttons.png
new file mode 100644
index 0000000..9d73083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_alertdialog_twobuttons.png
new file mode 100644
index 0000000..34810fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_button.png
new file mode 100644
index 0000000..0478b2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_button_pressed.png
new file mode 100644
index 0000000..fa826df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..52ffc7f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_checkbox.png
new file mode 100644
index 0000000..2e1963f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
new file mode 100644
index 0000000..4eb39c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_chronometer.png
new file mode 100644
index 0000000..2a62d85
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
new file mode 100644
index 0000000..d1a3f99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
new file mode 100644
index 0000000..52a4de2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_blue_light.png
new file mode 100644
index 0000000..f9439e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_green_dark.png
new file mode 100644
index 0000000..4f8af58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_green_light.png
new file mode 100644
index 0000000..6ad2394
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
new file mode 100644
index 0000000..73f8418
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_orange_light.png
new file mode 100644
index 0000000..90ab999
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_purple.png
new file mode 100644
index 0000000..30f2d23
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_red_dark.png
new file mode 100644
index 0000000..c0cbef0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_red_light.png
new file mode 100644
index 0000000..e99df2c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_edittext.png
new file mode 100644
index 0000000..4b41717
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
new file mode 100644
index 0000000..f1d481d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
new file mode 100644
index 0000000..a586079
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
new file mode 100644
index 0000000..9467831
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressdialog_horizontal.png
new file mode 100644
index 0000000..68cc076
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_radio_button.png
new file mode 100644
index 0000000..db61da3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
new file mode 100644
index 0000000..ea35686
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
new file mode 100644
index 0000000..72b7077
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
new file mode 100644
index 0000000..c145b7a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
new file mode 100644
index 0000000..517f3d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
new file mode 100644
index 0000000..c31df16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
new file mode 100644
index 0000000..d184a4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..e4fcb80
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
new file mode 100644
index 0000000..ce1c817
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f9f41d4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_searchview.png
new file mode 100644
index 0000000..73c611f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_searchview_query.png
new file mode 100644
index 0000000..a61d007
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
new file mode 100644
index 0000000..139aacc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_seekbar_0.png
new file mode 100644
index 0000000..eb26838
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_seekbar_100.png
new file mode 100644
index 0000000..a5ae2ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_seekbar_50.png
new file mode 100644
index 0000000..8438db8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_spinner.png
new file mode 100644
index 0000000..713ea22
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_switch.png
new file mode 100644
index 0000000..001e106
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_switch_checked.png
new file mode 100644
index 0000000..79e75f3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_tabhost.png
new file mode 100644
index 0000000..eaeeae7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_textview.png
new file mode 100644
index 0000000..0d908a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_timepicker.png
new file mode 100644
index 0000000..8711542
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_toggle_button.png
new file mode 100644
index 0000000..cdfb783
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
new file mode 100644
index 0000000..2c604ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_zoomcontrols.png
new file mode 100644
index 0000000..21d17f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..f1d481d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..a586079
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..9467831
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressdialog_horizontal.png
new file mode 100644
index 0000000..68cc076
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_radio_button.png
new file mode 100644
index 0000000..db61da3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..ea35686
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..72b7077
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..c145b7a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..517f3d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..c31df16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..d184a4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..e4fcb80
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..ce1c817
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f9f41d4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_searchview.png
new file mode 100644
index 0000000..73c611f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_searchview_query.png
new file mode 100644
index 0000000..a61d007
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..139aacc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..eb26838
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..a5ae2ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..8438db8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_spinner.png
new file mode 100644
index 0000000..713ea22
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_switch.png
new file mode 100644
index 0000000..001e106
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_switch_checked.png
new file mode 100644
index 0000000..79e75f3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_tabhost.png
new file mode 100644
index 0000000..eaeeae7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_textview.png
new file mode 100644
index 0000000..0d908a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_timepicker.png
new file mode 100644
index 0000000..8711542
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_toggle_button.png
new file mode 100644
index 0000000..cdfb783
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..2c604ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_zoomcontrols.png
new file mode 100644
index 0000000..21d17f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_alertdialog_list.png
new file mode 100644
index 0000000..2791d02
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_alertdialog_multichoice.png
new file mode 100644
index 0000000..8f6b6df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_alertdialog_onebutton.png
new file mode 100644
index 0000000..e0fabdf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_alertdialog_singlechoice.png
new file mode 100644
index 0000000..2aec266
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_alertdialog_threebuttons.png
new file mode 100644
index 0000000..9d73083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_alertdialog_twobuttons.png
new file mode 100644
index 0000000..34810fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_button.png
new file mode 100644
index 0000000..0478b2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_button_pressed.png
new file mode 100644
index 0000000..fa826df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_calendar_view.png
new file mode 100644
index 0000000..52ffc7f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_checkbox.png
new file mode 100644
index 0000000..2e1963f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_checkbox_checked.png
new file mode 100644
index 0000000..4eb39c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_chronometer.png
new file mode 100644
index 0000000..2a62d85
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_blue_bright.png
new file mode 100644
index 0000000..d1a3f99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_blue_dark.png
new file mode 100644
index 0000000..52a4de2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_blue_light.png
new file mode 100644
index 0000000..f9439e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_green_dark.png
new file mode 100644
index 0000000..4f8af58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_green_light.png
new file mode 100644
index 0000000..6ad2394
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_orange_dark.png
new file mode 100644
index 0000000..73f8418
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_orange_light.png
new file mode 100644
index 0000000..90ab999
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_purple.png
new file mode 100644
index 0000000..30f2d23
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_red_dark.png
new file mode 100644
index 0000000..c0cbef0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_red_light.png
new file mode 100644
index 0000000..e99df2c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_edittext.png
new file mode 100644
index 0000000..4b41717
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_horizontal_0.png
new file mode 100644
index 0000000..f1d481d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_horizontal_100.png
new file mode 100644
index 0000000..a586079
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_horizontal_50.png
new file mode 100644
index 0000000..9467831
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressdialog_horizontal.png
new file mode 100644
index 0000000..68cc076
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_radio_button.png
new file mode 100644
index 0000000..db61da3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_radio_button_checked.png
new file mode 100644
index 0000000..ea35686
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_radiogroup_horizontal.png
new file mode 100644
index 0000000..72b7077
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_radiogroup_vertical.png
new file mode 100644
index 0000000..c145b7a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_0.png
new file mode 100644
index 0000000..517f3d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_0_pressed.png
new file mode 100644
index 0000000..c31df16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_2point5.png
new file mode 100644
index 0000000..d184a4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..e4fcb80
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_5.png
new file mode 100644
index 0000000..ce1c817
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f9f41d4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_searchview.png
new file mode 100644
index 0000000..73c611f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_searchview_query.png
new file mode 100644
index 0000000..a61d007
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_searchview_query_hint.png
new file mode 100644
index 0000000..139aacc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_seekbar_0.png
new file mode 100644
index 0000000..eb26838
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_seekbar_100.png
new file mode 100644
index 0000000..a5ae2ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_seekbar_50.png
new file mode 100644
index 0000000..8438db8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_spinner.png
new file mode 100644
index 0000000..713ea22
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_switch.png
new file mode 100644
index 0000000..001e106
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_switch_checked.png
new file mode 100644
index 0000000..79e75f3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_tabhost.png
new file mode 100644
index 0000000..eaeeae7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_textview.png
new file mode 100644
index 0000000..0d908a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_timepicker.png
new file mode 100644
index 0000000..8711542
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_toggle_button.png
new file mode 100644
index 0000000..cdfb783
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_toggle_button_checked.png
new file mode 100644
index 0000000..2c604ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_zoomcontrols.png
new file mode 100644
index 0000000..21d17f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_horizontal_0.png
new file mode 100644
index 0000000..f1d481d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_horizontal_100.png
new file mode 100644
index 0000000..a586079
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_horizontal_50.png
new file mode 100644
index 0000000..9467831
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_progressdialog_horizontal.png
new file mode 100644
index 0000000..68cc076
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_radio_button.png
new file mode 100644
index 0000000..db61da3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_radio_button_checked.png
new file mode 100644
index 0000000..ea35686
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_radiogroup_horizontal.png
new file mode 100644
index 0000000..72b7077
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_radiogroup_vertical.png
new file mode 100644
index 0000000..c145b7a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_0.png
new file mode 100644
index 0000000..517f3d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_0_pressed.png
new file mode 100644
index 0000000..c31df16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_2point5.png
new file mode 100644
index 0000000..d184a4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..e4fcb80
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_5.png
new file mode 100644
index 0000000..ce1c817
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f9f41d4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_searchview.png
new file mode 100644
index 0000000..73c611f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_searchview_query.png
new file mode 100644
index 0000000..a61d007
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_searchview_query_hint.png
new file mode 100644
index 0000000..139aacc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_seekbar_0.png
new file mode 100644
index 0000000..eb26838
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_seekbar_100.png
new file mode 100644
index 0000000..a5ae2ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_seekbar_50.png
new file mode 100644
index 0000000..8438db8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_spinner.png
new file mode 100644
index 0000000..713ea22
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_switch.png
new file mode 100644
index 0000000..001e106
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_switch_checked.png
new file mode 100644
index 0000000..79e75f3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_tabhost.png
new file mode 100644
index 0000000..eaeeae7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_textview.png
new file mode 100644
index 0000000..0d908a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_timepicker.png
new file mode 100644
index 0000000..8711542
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_toggle_button.png
new file mode 100644
index 0000000..cdfb783
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_toggle_button_checked.png
new file mode 100644
index 0000000..2c604ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_alertdialog_list.png
new file mode 100644
index 0000000..2791d02
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_alertdialog_multichoice.png
new file mode 100644
index 0000000..8f6b6df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_alertdialog_onebutton.png
new file mode 100644
index 0000000..e0fabdf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_alertdialog_singlechoice.png
new file mode 100644
index 0000000..2aec266
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_alertdialog_threebuttons.png
new file mode 100644
index 0000000..9d73083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_alertdialog_twobuttons.png
new file mode 100644
index 0000000..34810fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_button.png
new file mode 100644
index 0000000..0478b2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_button_pressed.png
new file mode 100644
index 0000000..fa826df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_calendar_view.png
new file mode 100644
index 0000000..52ffc7f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_checkbox.png
new file mode 100644
index 0000000..2e1963f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_checkbox_checked.png
new file mode 100644
index 0000000..4eb39c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_chronometer.png
new file mode 100644
index 0000000..2a62d85
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_blue_bright.png
new file mode 100644
index 0000000..d1a3f99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_blue_dark.png
new file mode 100644
index 0000000..52a4de2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_blue_light.png
new file mode 100644
index 0000000..f9439e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_green_dark.png
new file mode 100644
index 0000000..4f8af58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_green_light.png
new file mode 100644
index 0000000..6ad2394
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_orange_dark.png
new file mode 100644
index 0000000..73f8418
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_orange_light.png
new file mode 100644
index 0000000..90ab999
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_purple.png
new file mode 100644
index 0000000..30f2d23
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_red_dark.png
new file mode 100644
index 0000000..c0cbef0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_red_light.png
new file mode 100644
index 0000000..e99df2c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_edittext.png
new file mode 100644
index 0000000..4b41717
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_alertdialog_list.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_alertdialog_list.png
new file mode 100644
index 0000000..2791d02
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_alertdialog_list.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_alertdialog_multichoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_alertdialog_multichoice.png
new file mode 100644
index 0000000..8f6b6df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_alertdialog_multichoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_alertdialog_onebutton.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_alertdialog_onebutton.png
new file mode 100644
index 0000000..e0fabdf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_alertdialog_onebutton.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_alertdialog_singlechoice.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_alertdialog_singlechoice.png
new file mode 100644
index 0000000..2aec266
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_alertdialog_singlechoice.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_alertdialog_threebuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_alertdialog_threebuttons.png
new file mode 100644
index 0000000..9d73083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_alertdialog_threebuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_alertdialog_twobuttons.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_alertdialog_twobuttons.png
new file mode 100644
index 0000000..34810fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_alertdialog_twobuttons.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_button.png
new file mode 100644
index 0000000..0478b2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_button_pressed.png
new file mode 100644
index 0000000..fa826df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_calendar_view.png
new file mode 100644
index 0000000..52ffc7f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_checkbox.png
new file mode 100644
index 0000000..2e1963f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
new file mode 100644
index 0000000..4eb39c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_chronometer.png
new file mode 100644
index 0000000..2a62d85
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
new file mode 100644
index 0000000..d1a3f99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
new file mode 100644
index 0000000..52a4de2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_blue_light.png
new file mode 100644
index 0000000..f9439e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_green_dark.png
new file mode 100644
index 0000000..4f8af58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_green_light.png
new file mode 100644
index 0000000..6ad2394
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
new file mode 100644
index 0000000..73f8418
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_orange_light.png
new file mode 100644
index 0000000..90ab999
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_purple.png
new file mode 100644
index 0000000..30f2d23
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_red_dark.png
new file mode 100644
index 0000000..c0cbef0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_red_light.png
new file mode 100644
index 0000000..e99df2c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_edittext.png
new file mode 100644
index 0000000..4b41717
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..f1d481d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..a586079
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..9467831
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressdialog_horizontal.png
new file mode 100644
index 0000000..68cc076
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_radio_button.png
new file mode 100644
index 0000000..db61da3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
new file mode 100644
index 0000000..ea35686
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
new file mode 100644
index 0000000..72b7077
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
new file mode 100644
index 0000000..c145b7a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
new file mode 100644
index 0000000..517f3d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..c31df16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
new file mode 100644
index 0000000..d184a4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..e4fcb80
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
new file mode 100644
index 0000000..ce1c817
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f9f41d4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_searchview.png
new file mode 100644
index 0000000..73c611f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_searchview_query.png
new file mode 100644
index 0000000..a61d007
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
new file mode 100644
index 0000000..139aacc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_seekbar_0.png
new file mode 100644
index 0000000..eb26838
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_seekbar_100.png
new file mode 100644
index 0000000..a5ae2ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_seekbar_50.png
new file mode 100644
index 0000000..8438db8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_spinner.png
new file mode 100644
index 0000000..713ea22
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_switch.png
new file mode 100644
index 0000000..001e106
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_switch_checked.png
new file mode 100644
index 0000000..79e75f3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_tabhost.png
new file mode 100644
index 0000000..eaeeae7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_textview.png
new file mode 100644
index 0000000..0d908a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_timepicker.png
new file mode 100644
index 0000000..8711542
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_toggle_button.png
new file mode 100644
index 0000000..cdfb783
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
new file mode 100644
index 0000000..2c604ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_zoomcontrols.png
new file mode 100644
index 0000000..21d17f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_horizontal_0.png
new file mode 100644
index 0000000..f1d481d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_horizontal_100.png
new file mode 100644
index 0000000..a586079
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_horizontal_50.png
new file mode 100644
index 0000000..9467831
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressdialog_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressdialog_horizontal.png
new file mode 100644
index 0000000..68cc076
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressdialog_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_radio_button.png
new file mode 100644
index 0000000..db61da3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_radio_button_checked.png
new file mode 100644
index 0000000..ea35686
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_radiogroup_horizontal.png
new file mode 100644
index 0000000..72b7077
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_radiogroup_vertical.png
new file mode 100644
index 0000000..c145b7a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_0.png
new file mode 100644
index 0000000..517f3d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_0_pressed.png
new file mode 100644
index 0000000..c31df16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_2point5.png
new file mode 100644
index 0000000..d184a4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..e4fcb80
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_5.png
new file mode 100644
index 0000000..ce1c817
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f9f41d4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_searchview.png
new file mode 100644
index 0000000..73c611f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_searchview_query.png
new file mode 100644
index 0000000..a61d007
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_searchview_query_hint.png
new file mode 100644
index 0000000..139aacc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_seekbar_0.png
new file mode 100644
index 0000000..eb26838
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_seekbar_100.png
new file mode 100644
index 0000000..a5ae2ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_seekbar_50.png
new file mode 100644
index 0000000..8438db8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_spinner.png
new file mode 100644
index 0000000..713ea22
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_switch.png
new file mode 100644
index 0000000..001e106
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_switch_checked.png
new file mode 100644
index 0000000..79e75f3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_tabhost.png
new file mode 100644
index 0000000..eaeeae7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_textview.png
new file mode 100644
index 0000000..0d908a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_timepicker.png
new file mode 100644
index 0000000..8711542
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_toggle_button.png
new file mode 100644
index 0000000..cdfb783
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_toggle_button_checked.png
new file mode 100644
index 0000000..2c604ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_zoomcontrols.png
new file mode 100644
index 0000000..21d17f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_zoomcontrols.png b/tests/tests/holo/res/drawable-xhdpi/holo_zoomcontrols.png
new file mode 100644
index 0000000..21d17f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_zoomcontrols.png
Binary files differ
diff --git a/tests/tests/holo/res/layout/button.xml b/tests/tests/holo/res/layout/button.xml
new file mode 100644
index 0000000..ca9f542
--- /dev/null
+++ b/tests/tests/holo/res/layout/button.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<Button xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/button"
+        />
diff --git a/tests/tests/holo/res/layout/calendarview.xml b/tests/tests/holo/res/layout/calendarview.xml
new file mode 100644
index 0000000..9c5f9ef
--- /dev/null
+++ b/tests/tests/holo/res/layout/calendarview.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<CalendarView xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="match_parent"
+        android:layout_height="match_parent"
+        />
diff --git a/tests/tests/holo/res/layout/checkbox.xml b/tests/tests/holo/res/layout/checkbox.xml
new file mode 100644
index 0000000..8eeac39
--- /dev/null
+++ b/tests/tests/holo/res/layout/checkbox.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<CheckBox xmlns:android="http://schemas.android.com/apk/res/android"
+        android:text="@string/checkbox"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        />
+
diff --git a/tests/tests/holo/res/layout/checkbox_checked.xml b/tests/tests/holo/res/layout/checkbox_checked.xml
new file mode 100644
index 0000000..4991c0f
--- /dev/null
+++ b/tests/tests/holo/res/layout/checkbox_checked.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<CheckBox xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        />
+
diff --git a/tests/tests/holo/res/layout/chronometer.xml b/tests/tests/holo/res/layout/chronometer.xml
new file mode 100644
index 0000000..11dc388
--- /dev/null
+++ b/tests/tests/holo/res/layout/chronometer.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<Chronometer xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        />
diff --git a/tests/tests/holo/res/layout/color_blue_bright.xml b/tests/tests/holo/res/layout/color_blue_bright.xml
new file mode 100644
index 0000000..aa1f7d0
--- /dev/null
+++ b/tests/tests/holo/res/layout/color_blue_bright.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<TextView xmlns:android="http://schemas.android.com/apk/res/android" 
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/textview"
+        android:textColor="@android:color/holo_blue_bright"
+        />
diff --git a/tests/tests/holo/res/layout/color_blue_dark.xml b/tests/tests/holo/res/layout/color_blue_dark.xml
new file mode 100644
index 0000000..7956d34
--- /dev/null
+++ b/tests/tests/holo/res/layout/color_blue_dark.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<TextView xmlns:android="http://schemas.android.com/apk/res/android" 
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/textview"
+        android:textColor="@android:color/holo_blue_dark"
+        />
diff --git a/tests/tests/holo/res/layout/color_blue_light.xml b/tests/tests/holo/res/layout/color_blue_light.xml
new file mode 100644
index 0000000..f4215c3
--- /dev/null
+++ b/tests/tests/holo/res/layout/color_blue_light.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<TextView xmlns:android="http://schemas.android.com/apk/res/android" 
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/textview"
+        android:textColor="@android:color/holo_blue_light"
+        />
diff --git a/tests/tests/holo/res/layout/color_green_dark.xml b/tests/tests/holo/res/layout/color_green_dark.xml
new file mode 100644
index 0000000..4ab111b
--- /dev/null
+++ b/tests/tests/holo/res/layout/color_green_dark.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<TextView xmlns:android="http://schemas.android.com/apk/res/android" 
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/textview"
+        android:textColor="@android:color/holo_green_dark"
+        />
diff --git a/tests/tests/holo/res/layout/color_green_light.xml b/tests/tests/holo/res/layout/color_green_light.xml
new file mode 100644
index 0000000..ba57dff
--- /dev/null
+++ b/tests/tests/holo/res/layout/color_green_light.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<TextView xmlns:android="http://schemas.android.com/apk/res/android" 
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/textview"
+        android:textColor="@android:color/holo_green_light"
+        />
diff --git a/tests/tests/holo/res/layout/color_orange_dark.xml b/tests/tests/holo/res/layout/color_orange_dark.xml
new file mode 100644
index 0000000..761f08a
--- /dev/null
+++ b/tests/tests/holo/res/layout/color_orange_dark.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<TextView xmlns:android="http://schemas.android.com/apk/res/android" 
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/textview"
+        android:textColor="@android:color/holo_orange_dark"
+        />
diff --git a/tests/tests/holo/res/layout/color_orange_light.xml b/tests/tests/holo/res/layout/color_orange_light.xml
new file mode 100644
index 0000000..de43795
--- /dev/null
+++ b/tests/tests/holo/res/layout/color_orange_light.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<TextView xmlns:android="http://schemas.android.com/apk/res/android" 
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/textview"
+        android:textColor="@android:color/holo_orange_light"
+        />
diff --git a/tests/tests/holo/res/layout/color_purple.xml b/tests/tests/holo/res/layout/color_purple.xml
new file mode 100644
index 0000000..8a2c0aa
--- /dev/null
+++ b/tests/tests/holo/res/layout/color_purple.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<TextView xmlns:android="http://schemas.android.com/apk/res/android" 
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/textview"
+        android:textColor="@android:color/holo_purple"
+        />
diff --git a/tests/tests/holo/res/layout/color_red_dark.xml b/tests/tests/holo/res/layout/color_red_dark.xml
new file mode 100644
index 0000000..7e5f629
--- /dev/null
+++ b/tests/tests/holo/res/layout/color_red_dark.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<TextView xmlns:android="http://schemas.android.com/apk/res/android" 
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/textview"
+        android:textColor="@android:color/holo_red_dark"
+        />
diff --git a/tests/tests/holo/res/layout/color_red_light.xml b/tests/tests/holo/res/layout/color_red_light.xml
new file mode 100644
index 0000000..8afb202
--- /dev/null
+++ b/tests/tests/holo/res/layout/color_red_light.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<TextView xmlns:android="http://schemas.android.com/apk/res/android" 
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/textview"
+        android:textColor="@android:color/holo_red_light"
+        />
diff --git a/tests/tests/holo/res/layout/datepicker.xml b/tests/tests/holo/res/layout/datepicker.xml
new file mode 100644
index 0000000..1ae9550
--- /dev/null
+++ b/tests/tests/holo/res/layout/datepicker.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<DatePicker xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        />
diff --git a/tests/tests/holo/res/layout/edittext.xml b/tests/tests/holo/res/layout/edittext.xml
new file mode 100644
index 0000000..5515010
--- /dev/null
+++ b/tests/tests/holo/res/layout/edittext.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<EditText xmlns:android="http://schemas.android.com/apk/res/android"    
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        />
diff --git a/tests/tests/holo/res/layout/empty.xml b/tests/tests/holo/res/layout/empty.xml
new file mode 100644
index 0000000..562bf1a
--- /dev/null
+++ b/tests/tests/holo/res/layout/empty.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="0dip"
+        android:layout_height="0dip"
+        />
diff --git a/tests/tests/holo/res/layout/holo_test.xml b/tests/tests/holo/res/layout/holo_test.xml
new file mode 100644
index 0000000..c22d10d
--- /dev/null
+++ b/tests/tests/holo/res/layout/holo_test.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2010 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+        android:orientation="vertical"
+        android:layout_width="match_parent"
+        android:layout_height="match_parent">
+    <android.holo.cts.ReferenceViewGroup
+            android:id="@+id/reference_view_group"
+            android:orientation="vertical"
+            android:layout_width="match_parent"
+            android:layout_height="match_parent"
+            />
+</LinearLayout>
diff --git a/tests/tests/holo/res/layout/progressbar.xml b/tests/tests/holo/res/layout/progressbar.xml
new file mode 100644
index 0000000..4e810fc
--- /dev/null
+++ b/tests/tests/holo/res/layout/progressbar.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<ProgressBar xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:animationResolution="60000"
+        />
diff --git a/tests/tests/holo/res/layout/progressbar_horizontal_0.xml b/tests/tests/holo/res/layout/progressbar_horizontal_0.xml
new file mode 100644
index 0000000..f5a515e
--- /dev/null
+++ b/tests/tests/holo/res/layout/progressbar_horizontal_0.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<ProgressBar xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:progress="0"
+        android:max="100"    
+        style="?android:attr/progressBarStyleHorizontal"
+        />
diff --git a/tests/tests/holo/res/layout/progressbar_horizontal_100.xml b/tests/tests/holo/res/layout/progressbar_horizontal_100.xml
new file mode 100644
index 0000000..3266479
--- /dev/null
+++ b/tests/tests/holo/res/layout/progressbar_horizontal_100.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<ProgressBar xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:progress="100"
+        android:max="100"    
+        style="?android:attr/progressBarStyleHorizontal"
+        />
diff --git a/tests/tests/holo/res/layout/progressbar_horizontal_50.xml b/tests/tests/holo/res/layout/progressbar_horizontal_50.xml
new file mode 100644
index 0000000..a64bb96
--- /dev/null
+++ b/tests/tests/holo/res/layout/progressbar_horizontal_50.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<ProgressBar xmlns:android="http://schemas.android.com/apk/res/android"
+        android:id="@+id/progressBar1"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:progress="50"
+        android:max="100"
+        style="?android:attr/progressBarStyleHorizontal"
+        />
diff --git a/tests/tests/holo/res/layout/progressbar_large.xml b/tests/tests/holo/res/layout/progressbar_large.xml
new file mode 100644
index 0000000..4b66447
--- /dev/null
+++ b/tests/tests/holo/res/layout/progressbar_large.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<ProgressBar xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:animationResolution="60000"
+        style="?android:attr/progressBarStyleLarge"
+        />
diff --git a/tests/tests/holo/res/layout/progressbar_small.xml b/tests/tests/holo/res/layout/progressbar_small.xml
new file mode 100644
index 0000000..ae813d6
--- /dev/null
+++ b/tests/tests/holo/res/layout/progressbar_small.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<ProgressBar xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:animationResolution="60000"        
+        style="?android:attr/progressBarStyleSmall"
+        />
diff --git a/tests/tests/holo/res/layout/radiobutton.xml b/tests/tests/holo/res/layout/radiobutton.xml
new file mode 100644
index 0000000..f03d0f5
--- /dev/null
+++ b/tests/tests/holo/res/layout/radiobutton.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<RadioButton xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/radiobutton"
+        />
diff --git a/tests/tests/holo/res/layout/radiobutton_checked.xml b/tests/tests/holo/res/layout/radiobutton_checked.xml
new file mode 100644
index 0000000..6d57cc1
--- /dev/null
+++ b/tests/tests/holo/res/layout/radiobutton_checked.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<RadioButton xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:checked="true"
+        android:text="@string/radiobutton_checked"
+        />
diff --git a/tests/tests/holo/res/layout/radiogroup_horizontal.xml b/tests/tests/holo/res/layout/radiogroup_horizontal.xml
new file mode 100644
index 0000000..cdbf1c3
--- /dev/null
+++ b/tests/tests/holo/res/layout/radiogroup_horizontal.xml
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<RadioGroup xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:orientation="horizontal"
+        >
+    <RadioButton android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:text="@string/radiobutton_1" 
+            />
+    <RadioButton android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:text="@string/radiobutton_2"
+            />
+</RadioGroup>
diff --git a/tests/tests/holo/res/layout/radiogroup_vertical.xml b/tests/tests/holo/res/layout/radiogroup_vertical.xml
new file mode 100644
index 0000000..9f570eb
--- /dev/null
+++ b/tests/tests/holo/res/layout/radiogroup_vertical.xml
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<RadioGroup xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:orientation="vertical"
+        >
+    <RadioButton android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:text="@string/radiobutton_1"
+            />
+    <RadioButton android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:text="@string/radiobutton_2"
+            />
+</RadioGroup>
diff --git a/tests/tests/holo/res/layout/ratingbar_0.xml b/tests/tests/holo/res/layout/ratingbar_0.xml
new file mode 100644
index 0000000..8a5a9dd
--- /dev/null
+++ b/tests/tests/holo/res/layout/ratingbar_0.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<RatingBar xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:rating="0"
+        android:numStars="5"
+        />
diff --git a/tests/tests/holo/res/layout/ratingbar_2point5.xml b/tests/tests/holo/res/layout/ratingbar_2point5.xml
new file mode 100644
index 0000000..38a2a50
--- /dev/null
+++ b/tests/tests/holo/res/layout/ratingbar_2point5.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<RatingBar xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:rating="2.5"
+        android:numStars="5"
+        />
diff --git a/tests/tests/holo/res/layout/ratingbar_5.xml b/tests/tests/holo/res/layout/ratingbar_5.xml
new file mode 100644
index 0000000..9e09d4c
--- /dev/null
+++ b/tests/tests/holo/res/layout/ratingbar_5.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<RatingBar xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:rating="5"
+        android:numStars="5"
+        />   
diff --git a/tests/tests/holo/res/layout/searchview.xml b/tests/tests/holo/res/layout/searchview.xml
new file mode 100644
index 0000000..a1822ca
--- /dev/null
+++ b/tests/tests/holo/res/layout/searchview.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<SearchView xmlns:android="http://schemas.android.com/apk/res/android"    
+        android:layout_width="fill_parent"
+        android:layout_height="wrap_content"
+        />
diff --git a/tests/tests/holo/res/layout/seekbar_0.xml b/tests/tests/holo/res/layout/seekbar_0.xml
new file mode 100644
index 0000000..fac24c7
--- /dev/null
+++ b/tests/tests/holo/res/layout/seekbar_0.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<SeekBar xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:progress="0"
+        android:max="100"
+        />
diff --git a/tests/tests/holo/res/layout/seekbar_100.xml b/tests/tests/holo/res/layout/seekbar_100.xml
new file mode 100644
index 0000000..179b39a
--- /dev/null
+++ b/tests/tests/holo/res/layout/seekbar_100.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<SeekBar xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:progress="100"
+        android:max="100"
+        />
diff --git a/tests/tests/holo/res/layout/seekbar_50.xml b/tests/tests/holo/res/layout/seekbar_50.xml
new file mode 100644
index 0000000..cfb91ab
--- /dev/null
+++ b/tests/tests/holo/res/layout/seekbar_50.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<SeekBar xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:progress="50"
+        android:max="100"
+        />
diff --git a/tests/tests/holo/res/layout/spinner.xml b/tests/tests/holo/res/layout/spinner.xml
new file mode 100644
index 0000000..1647416
--- /dev/null
+++ b/tests/tests/holo/res/layout/spinner.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<Spinner xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:prompt="@string/spinner_prompt"
+        android:entries="@array/spinner_entries"
+        />
diff --git a/tests/tests/holo/res/layout/switch_button.xml b/tests/tests/holo/res/layout/switch_button.xml
new file mode 100644
index 0000000..15f7038
--- /dev/null
+++ b/tests/tests/holo/res/layout/switch_button.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<Switch xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/switch_button"
+        />
diff --git a/tests/tests/holo/res/layout/switch_button_checked.xml b/tests/tests/holo/res/layout/switch_button_checked.xml
new file mode 100644
index 0000000..9cf7687
--- /dev/null
+++ b/tests/tests/holo/res/layout/switch_button_checked.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<Switch xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:checked="true"
+        android:text="@string/switch_button"
+        />
diff --git a/tests/tests/holo/res/layout/tabhost.xml b/tests/tests/holo/res/layout/tabhost.xml
new file mode 100644
index 0000000..4b7bcca
--- /dev/null
+++ b/tests/tests/holo/res/layout/tabhost.xml
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="fill_parent"
+        android:layout_height="fill_parent"
+        >
+    <LinearLayout android:layout_width="fill_parent"
+            android:layout_height="fill_parent"
+            android:orientation="vertical"            
+            android:padding="5dp">
+        <TabWidget android:id="@android:id/tabs"
+                android:layout_width="fill_parent"
+                android:layout_height="wrap_content" 
+                />
+        <FrameLayout android:id="@android:id/tabcontent"
+                android:layout_width="fill_parent"
+                android:layout_height="fill_parent"
+                android:padding="5dp"
+                >
+            <LinearLayout android:id="@+id/tab_inner_view"
+                    android:layout_width="wrap_content"
+                    android:layout_height="wrap_content"
+                    />
+        </FrameLayout>
+    </LinearLayout>
+</TabHost>
diff --git a/tests/tests/holo/res/layout/textview.xml b/tests/tests/holo/res/layout/textview.xml
new file mode 100644
index 0000000..d45bc3a
--- /dev/null
+++ b/tests/tests/holo/res/layout/textview.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<TextView xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/textview"
+        />
diff --git a/tests/tests/holo/res/layout/timepicker.xml b/tests/tests/holo/res/layout/timepicker.xml
new file mode 100644
index 0000000..1e0f334
--- /dev/null
+++ b/tests/tests/holo/res/layout/timepicker.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+  
+          http://www.apache.org/licenses/LICENSE-2.0
+  
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<TimePicker xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        />
diff --git a/tests/tests/holo/res/layout/togglebutton.xml b/tests/tests/holo/res/layout/togglebutton.xml
new file mode 100644
index 0000000..d15e899
--- /dev/null
+++ b/tests/tests/holo/res/layout/togglebutton.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<ToggleButton xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        />
+
diff --git a/tests/tests/holo/res/layout/togglebutton_checked.xml b/tests/tests/holo/res/layout/togglebutton_checked.xml
new file mode 100644
index 0000000..bd8cabd
--- /dev/null
+++ b/tests/tests/holo/res/layout/togglebutton_checked.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<ToggleButton xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:checked="true"
+        />
diff --git a/tests/tests/holo/res/layout/zoomcontrols.xml b/tests/tests/holo/res/layout/zoomcontrols.xml
new file mode 100644
index 0000000..80ac8fb
--- /dev/null
+++ b/tests/tests/holo/res/layout/zoomcontrols.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<ZoomControls xmlns:android="http://schemas.android.com/apk/res/android"    
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        />
diff --git a/tests/tests/holo/res/values/arrays.xml b/tests/tests/holo/res/values/arrays.xml
new file mode 100644
index 0000000..f6e6c92
--- /dev/null
+++ b/tests/tests/holo/res/values/arrays.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<resources>
+    <string-array name="spinner_entries">
+        <item>Spinner 1</item>
+        <item>Spinner 2</item>
+        <item>Spinner 3</item>
+    </string-array>
+</resources>
diff --git a/tests/tests/holo/res/values/dimens.xml b/tests/tests/holo/res/values/dimens.xml
new file mode 100755
index 0000000..76de0d0
--- /dev/null
+++ b/tests/tests/holo/res/values/dimens.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<resources>
+    <dimen name="reference_width">320dp</dimen>
+    <dimen name="reference_height">480dp</dimen>
+</resources>
+
diff --git a/tests/tests/holo/res/values/strings.xml b/tests/tests/holo/res/values/strings.xml
new file mode 100644
index 0000000..3846b06
--- /dev/null
+++ b/tests/tests/holo/res/values/strings.xml
@@ -0,0 +1,101 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<resources>
+    <string name="holo_test_utilities">Holo Test Utilities</string>
+    <string name="task_view_tests">View Tests</string>
+    <string name="task_generate_one_bitmap">Generate Single Test Bitmaps</string>
+    <string name="task_generate_all_bitmaps">Generate All Test Bitmaps</string>
+    <string name="task_clear_reference_bitmaps">Clear Reference Bitmaps</string>
+    <string name="task_clear_failure_bitmaps">Clear Failure Bitmaps</string>
+
+    <string name="pick_theme">Pick Theme</string>
+    <string name="pick_layout">Pick Layout</string>
+    
+        
+    <string name="deleting_bitmaps">Deleting bitmaps...</string>
+    <string name="deleting_bitmaps_finished">Successfully deleted bitmaps!</string>
+    <string name="deleting_bitmaps_error">Failed to delete bitmaps. Is external storage mounted?</string>
+    <string name="generate_bitmap_success">Saved bitmap to %s</string>
+    <string name="generate_bitmap_failure">Failed to save bitmap to %s</string>
+    <string name="comparison_success">Bitmap matches the reference bitmap!</string>
+    <string name="comparison_failure">Bitmap does not match reference bitmap. Saved %s</string>
+
+    <string name="button">Button</string>
+    <string name="button_pressed">Button Pressed</string>
+    <string name="calendarview">CalendarView</string>
+    <string name="checkbox">CheckBox</string>
+    <string name="checkbox_checked">CheckBox Checked</string>
+    <string name="chronometer">Chronometer</string>
+    <string name="datepicker">DatePicker</string>
+    <string name="edittext">EditText</string>
+    <string name="progressbar">ProgressBar</string>
+    <string name="progressbar_small">ProgressBar Small</string>
+    <string name="progressbar_large">ProgressBar Large</string>
+    <string name="progressbar_horizontal_0">ProgressBar Horizontal 0%</string>
+    <string name="progressbar_horizontal_50">ProgressBar Horizontal 50%</string>
+    <string name="progressbar_horizontal_100">ProgressBar Horizontal 100%</string>
+    <string name="radiobutton">RadioButton</string>
+    <string name="radiobutton_checked">RadioButton Checked</string>
+    <string name="radiogroup_horizontal">RadioGroup Horizontal</string>
+    <string name="radiogroup_vertical">RadioGroup Vertical</string>
+    <string name="ratingbar_0">RatingBar 0 Stars</string>
+    <string name="ratingbar_2point5">RatingBar 2.5 Stars</string>
+    <string name="ratingbar_5">RatingBar 5 Stars</string>
+    <string name="ratingbar_0_pressed">RatingBar 0 Stars Pressed</string>
+    <string name="ratingbar_2point5_pressed">RatingBar 2.5 Stars Pressed</string>
+    <string name="ratingbar_5_pressed">RatingBar 5 Stars Pressed</string>
+    <string name="searchview">SearchView</string>
+    <string name="searchview_query">SearchView Query</string>
+    <string name="searchview_query_hint">SearchView Query Hint</string>
+    <string name="seekbar_0">SeekBar 0%</string>
+    <string name="seekbar_50">SeekBar 50%</string>
+    <string name="seekbar_100">SeekBar 100%</string>
+    <string name="spinner">Spinner</string>
+    <string name="switch_button">Switch</string>
+    <string name="switch_button_checked">Switch Checked</string>
+    <string name="tabhost">TabHost</string>
+    <string name="textview">TextView</string>
+    <string name="timepicker">TimePicker</string>    
+    <string name="togglebutton">ToggleButton</string>
+    <string name="togglebutton_checked">ToggleButton Checked</string>
+    <string name="zoomcontrols">ZoomControls</string>
+    
+    <string name="alertdialog_onebutton">AlertDialog One Button</string>
+    <string name="alertdialog_twobuttons">AlertDialog Two Buttons</string>
+    <string name="alertdialog_threebuttons">AlertDialog Three Buttons</string>
+    <string name="alertdialog_list">AlertDialog List</string>
+    <string name="alertdialog_singlechoice">AlertDialog Single Choice</string>
+    <string name="alertdialog_multichoice">AlertDialog Multiple Choice</string>
+    <string name="progressdialog_spinner">ProgressDialog Spinner</string>
+    <string name="progressdialog_horizontal">ProgressDialog Horizontal</string>
+    
+    <string name="color_blue_bright">Bright Blue Color</string>
+    <string name="color_blue_dark">Dark Blue Color</string>
+    <string name="color_blue_light">Light Blue Color</string>
+    <string name="color_green_dark">Dark Green Color</string>
+    <string name="color_green_light">Light Green Color</string>
+    <string name="color_orange_dark">Dark Orange Color</string>
+    <string name="color_orange_light">Light Orange Color</string>
+    <string name="color_purple">Purple Color</string>
+    <string name="color_red_dark">Dark Red Color</string>
+    <string name="color_red_light">Light Red Color</string>
+    
+    <string name="spinner_prompt">Spinner Prompt</string>
+    <string name="radiobutton_1">Radio Button 1</string>
+    <string name="radiobutton_2">Radio Button 2</string>
+    <string name="loading">Loading...</string>
+
+</resources>
diff --git a/tests/tests/holo/src/android/holo/cts/AllThemesIterator.java b/tests/tests/holo/src/android/holo/cts/AllThemesIterator.java
new file mode 100644
index 0000000..d403d8d
--- /dev/null
+++ b/tests/tests/holo/src/android/holo/cts/AllThemesIterator.java
@@ -0,0 +1,64 @@
+/*
+ * Copyright (C) 2011 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.holo.cts;
+
+import android.content.Intent;
+
+import java.util.Iterator;
+
+/**
+ * {@link Iterator} over all the possible permutations of theme and layout intents.
+ */
+class AllThemesIterator implements Iterator<Intent> {
+
+    private final ThemeAdapter mThemeAdapter = new ThemeAdapter(null);
+    private final LayoutAdapter mLayoutAdapter = new LayoutAdapter(null);
+
+    private final int mTask;
+    private int mThemeIndex;
+    private int mLayoutIndex;
+
+    AllThemesIterator(int task) {
+        mTask = task;
+    }
+
+    @Override
+    public boolean hasNext() {
+        return mThemeIndex < mThemeAdapter.getCount();
+    }
+
+    @Override
+    public Intent next() {
+        Intent intent = new Intent();
+        intent.putExtra(LayoutTestActivity.EXTRA_THEME_INDEX, mThemeIndex);
+        intent.putExtra(LayoutTestActivity.EXTRA_LAYOUT_INDEX, mLayoutIndex);
+        intent.putExtra(LayoutTestActivity.EXTRA_TASK, mTask);
+
+        mLayoutIndex++;
+        if (mLayoutIndex >= mLayoutAdapter.getCount()) {
+            mThemeIndex++;
+            mLayoutIndex = 0;
+        }
+
+        return intent;
+    }
+
+    @Override
+    public void remove() {
+        throw new UnsupportedOperationException("I don't think so...");
+    }
+}
diff --git a/tests/tests/holo/src/android/holo/cts/BitmapAssets.java b/tests/tests/holo/src/android/holo/cts/BitmapAssets.java
new file mode 100644
index 0000000..29b3221
--- /dev/null
+++ b/tests/tests/holo/src/android/holo/cts/BitmapAssets.java
@@ -0,0 +1,127 @@
+/*
+ * Copyright (C) 2011 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.holo.cts;
+
+import android.content.Context;
+import android.content.res.Resources;
+import android.graphics.Bitmap;
+import android.graphics.Bitmap.CompressFormat;
+import android.graphics.drawable.BitmapDrawable;
+import android.holo.cts.LayoutAdapter.LayoutInfo;
+import android.holo.cts.ThemeAdapter.ThemeInfo;
+import android.os.Environment;
+import android.util.Log;
+
+import java.io.File;
+import java.io.FileOutputStream;
+import java.io.IOException;
+
+/**
+ * Collection of utility methods to handle creation and deletion of assets.
+ *
+ * It creates a directory called "cts-holo-assets" on the external storage.
+ * Below that it creates a directory called "reference" to store images
+ * generated by the generator and "failure" to store images that failed to
+ * match when running the test.
+ */
+class BitmapAssets {
+
+    private static final String TAG = BitmapAssets.class.getSimpleName();
+
+    static final int TYPE_REFERENCE = 0;
+
+    static final int TYPE_FAILED = 1;
+
+    public static boolean clearDirectory(int type) {
+        if (!isExternalStorageReady()) {
+            return false;
+        }
+
+        File dir = getBitmapDir(type);
+        if (dir.exists()) {
+            File[] files = dir.listFiles();
+            int numFiles = files.length;
+            for (int i = 0; i < numFiles; i++) {
+                files[i].delete();
+            }
+        }
+        return true;
+    }
+
+    private static boolean isExternalStorageReady() {
+        return Environment.MEDIA_MOUNTED.equals(Environment.getExternalStorageState());
+    }
+
+    private static File getBitmapDir(int type) {
+        String subDir;
+        switch (type) {
+            case TYPE_REFERENCE:
+                subDir = "reference";
+                break;
+            case TYPE_FAILED:
+                subDir = "failed";
+                break;
+            default:
+                throw new IllegalArgumentException("Bad type: " + type);
+        }
+
+        File file = new File(Environment.getExternalStorageDirectory(), "cts-holo-assets");
+        return new File(file, subDir);
+    }
+
+    public static String getBitmapName(ThemeInfo themeInfo, LayoutInfo layoutInfo) {
+        return themeInfo.getBitmapName() + "_" + layoutInfo.getBitmapName();
+    }
+
+    public static Bitmap getBitmap(Context context, String bitmapName) {
+        Resources resources = context.getResources();
+        int resourceId = resources.getIdentifier(bitmapName, "drawable", context.getPackageName());
+        return ((BitmapDrawable) resources.getDrawable(resourceId)).getBitmap();
+    }
+
+    public static File getBitmapPath(String bitmapName, int type) {
+        String prefix;
+        switch (type) {
+            case TYPE_REFERENCE:
+                prefix = "";
+                break;
+            case TYPE_FAILED:
+                prefix = "failed_";
+                break;
+            default:
+                throw new IllegalArgumentException("Bad type: " + type);
+        }
+
+        return new File(getBitmapDir(type), prefix + bitmapName + ".png");
+    }
+
+    public static String saveBitmap(Bitmap bitmap, String bitmapName, int type) throws IOException {
+        if (!isExternalStorageReady()) {
+            Log.i(TAG, "External storage for saving bitmaps is not mounted");
+            return null;
+        }
+
+        File file = getBitmapPath(bitmapName, type);
+        File dir = file.getParentFile();
+        dir.mkdirs();
+
+        FileOutputStream stream = new FileOutputStream(file);
+        bitmap.compress(CompressFormat.PNG, 100, stream);
+        stream.close();
+        return file.getAbsolutePath();
+    }
+}
diff --git a/tests/tests/holo/src/android/holo/cts/BitmapDeletionActivity.java b/tests/tests/holo/src/android/holo/cts/BitmapDeletionActivity.java
new file mode 100644
index 0000000..c496efe
--- /dev/null
+++ b/tests/tests/holo/src/android/holo/cts/BitmapDeletionActivity.java
@@ -0,0 +1,103 @@
+/*
+ * Copyright (C) 2011 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.holo.cts;
+
+import com.android.cts.holo.R;
+
+import android.app.Activity;
+import android.app.AlertDialog;
+import android.app.Dialog;
+import android.app.ProgressDialog;
+import android.content.DialogInterface;
+import android.os.AsyncTask;
+import android.os.Bundle;
+
+/**
+ * {@link Activity} that iterates over all the test layouts for a single theme
+ * and either compares or generates bitmaps.
+ */
+public class BitmapDeletionActivity extends Activity {
+
+    static final String EXTRA_BITMAP_TYPE = "bitmapType";
+
+    private static final int DIALOG_DELETING_ID = 1;
+    private static final int DIALOG_FINISHED_DELETING_ID = 2;
+    private static final int DIALOG_ERROR_DELETING_ID = 3;
+
+    private int mBitmapType;
+
+    @Override
+    protected void onCreate(Bundle savedInstanceState) {
+        super.onCreate(savedInstanceState);
+        mBitmapType = getIntent().getIntExtra(EXTRA_BITMAP_TYPE, -1);
+        new DeleteBitmapsTask().execute();
+    }
+
+    class DeleteBitmapsTask extends AsyncTask<Void, Void, Boolean> {
+
+        @Override
+        protected void onPreExecute() {
+            super.onPreExecute();
+            showDialog(DIALOG_DELETING_ID);
+        }
+
+        @Override
+        protected Boolean doInBackground(Void... darthVoider) {
+            return BitmapAssets.clearDirectory(mBitmapType);
+        }
+
+        @Override
+        protected void onPostExecute(Boolean success) {
+            dismissDialog(DIALOG_DELETING_ID);
+            showDialog(success ? DIALOG_FINISHED_DELETING_ID : DIALOG_ERROR_DELETING_ID);
+        }
+    }
+
+    @Override
+    protected Dialog onCreateDialog(int id, Bundle args) {
+        switch (id) {
+            case DIALOG_DELETING_ID:
+                ProgressDialog dialog = new ProgressDialog(BitmapDeletionActivity.this);
+                dialog.setMessage(getString(R.string.deleting_bitmaps));
+                return dialog;
+
+            case DIALOG_FINISHED_DELETING_ID:
+                return createFinishingDialog(R.string.deleting_bitmaps_finished);
+
+            case DIALOG_ERROR_DELETING_ID:
+                return createFinishingDialog(R.string.deleting_bitmaps_error);
+
+            default:
+                return super.onCreateDialog(id, args);
+        }
+    }
+
+    private AlertDialog createFinishingDialog(int message) {
+        DialogInterface.OnClickListener finishListener =
+                new DialogInterface.OnClickListener() {
+                    @Override
+                    public void onClick(DialogInterface dialog, int which) {
+                        finish();
+                    }
+                };
+        return new AlertDialog.Builder(BitmapDeletionActivity.this)
+                .setMessage(message)
+                .setCancelable(false)
+                .setPositiveButton(android.R.string.ok, finishListener)
+                .create();
+    }
+}
diff --git a/tests/tests/holo/src/android/holo/cts/HoloTest.java b/tests/tests/holo/src/android/holo/cts/HoloTest.java
new file mode 100644
index 0000000..354cd52
--- /dev/null
+++ b/tests/tests/holo/src/android/holo/cts/HoloTest.java
@@ -0,0 +1,144 @@
+/*
+ * Copyright (C) 2011 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.holo.cts;
+
+import android.content.Intent;
+import android.holo.cts.ThemeTestActivity.Result;
+import android.test.ActivityInstrumentationTestCase2;
+
+/** Tests for the Holo theme. */
+public class HoloTest extends ActivityInstrumentationTestCase2<ThemeTestActivity> {
+
+    /*
+     * The tests take a long time, so the test is sharded into separate themes.
+     */
+
+    public HoloTest() {
+        super(ThemeTestActivity.class);
+    }
+
+    public void testHolo() throws Exception {
+        runThemeTest(0);
+    }
+
+    public void testHoloDialog() throws Exception {
+        runThemeTest(1);
+    }
+
+    public void testHoloDialogMinimumWidth() throws Exception {
+        runThemeTest(2);
+    }
+
+    public void testHoloDialogNoActionBar() throws Exception {
+        runThemeTest(3);
+    }
+
+    public void testHoloDialogNoActionBarMinimumWidth() throws Exception {
+        runThemeTest(4);
+    }
+
+    public void testHoloDialogWhenLarge() throws Exception {
+        runThemeTest(5);
+    }
+
+    public void testHoloDialogWhenLargeNoActionBar() throws Exception {
+        runThemeTest(6);
+    }
+
+    public void testHoloInputMethod() throws Exception {
+        runThemeTest(7);
+    }
+
+    public void testHoloLight() throws Exception {
+        runThemeTest(8);
+    }
+
+    public void testHoloLightDarkActionBar() throws Exception {
+        runThemeTest(9);
+    }
+
+    public void testHoloLightDialog() throws Exception {
+        runThemeTest(10);
+    }
+
+    public void testHoloLightDialogMinimumWidth() throws Exception {
+        runThemeTest(11);
+    }
+
+    public void testHoloLightDialogNoActionBar() throws Exception {
+        runThemeTest(12);
+    }
+
+    public void testHoloLightDialogNoActionBarMinimumWidth() throws Exception {
+        runThemeTest(13);
+    }
+
+    public void testHoloLightDialogWhenLarge() throws Exception {
+        runThemeTest(14);
+    }
+
+    public void testHoloLightDialogWhenLargeNoActionBar() throws Exception {
+        runThemeTest(15);
+    }
+
+    public void testHoloLightNoActionBar() throws Exception {
+        runThemeTest(16);
+    }
+
+    public void testHoloLightNoActionBarFullscreen() throws Exception {
+        runThemeTest(17);
+    }
+
+    public void testHoloLightPanel() throws Exception {
+        runThemeTest(18);
+    }
+
+    public void testHoloNoActionBar() throws Exception {
+        runThemeTest(19);
+    }
+
+    public void testHoloNoActionBarFullscreen() throws Exception {
+        runThemeTest(20);
+    }
+
+    public void testHoloPanel() throws Exception {
+        runThemeTest(21);
+    }
+
+    public void testHoloWallpaper() throws Exception {
+        runThemeTest(22);
+    }
+
+    public void testHoloWallpaperNoTitleBar() throws Exception {
+        runThemeTest(23);
+    }
+
+    private void runThemeTest(int themeIndex) throws Exception {
+        Intent intent = new Intent();
+        intent.putExtra(ThemeTestActivity.EXTRA_TASK, ThemeTestActivity.TASK_COMPARE_BITMAPS);
+        intent.putExtra(ThemeTestActivity.EXTRA_THEME_INDEX, themeIndex);
+        setActivityIntent(intent);
+
+        // Enable touch mode or else widgets will be highlighted causing bitmap
+        // comparison failures.
+        setActivityInitialTouchMode(true);
+
+        ThemeTestActivity activity = getActivity();
+        Result result = activity.getResultFuture().get();
+        assertTrue(result.getMessage(), result.passed());
+    }
+}
diff --git a/tests/tests/holo/src/android/holo/cts/HoloTestUtilitiesActivity.java b/tests/tests/holo/src/android/holo/cts/HoloTestUtilitiesActivity.java
new file mode 100644
index 0000000..b9d9535
--- /dev/null
+++ b/tests/tests/holo/src/android/holo/cts/HoloTestUtilitiesActivity.java
@@ -0,0 +1,130 @@
+/*
+ * Copyright (C) 2011 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.holo.cts;
+
+import com.android.cts.holo.R;
+
+import android.app.ListActivity;
+import android.content.Intent;
+import android.os.Bundle;
+import android.view.View;
+import android.widget.ArrayAdapter;
+import android.widget.ListView;
+
+/**
+ * {@link ListActivity} with helpful utilities like viewing the layout tests
+ * and generating the reference assets that can be packaged back into the
+ * test APK.
+ */
+public class HoloTestUtilitiesActivity extends ListActivity {
+
+    private static final int TASK_VIEW_TESTS = 0;
+    private static final int TASK_GENERATE_ONE_BITMAP = 1;
+    private static final int TASK_GENERATE_ALL_BITMAPS = 2;
+    private static final int TASK_CLEAR_REFERENCE_BITMAPS = 3;
+    private static final int TASK_CLEAR_FAILED_BITMAPS = 4;
+
+    @Override
+    protected void onCreate(Bundle savedInstanceState) {
+        super.onCreate(savedInstanceState);
+
+        ArrayAdapter<Task> taskAdapter = new ArrayAdapter<Task>(this,
+                android.R.layout.simple_list_item_1);
+        taskAdapter.add(new Task(R.string.task_view_tests, TASK_VIEW_TESTS));
+        taskAdapter.add(new Task(R.string.task_generate_one_bitmap, TASK_GENERATE_ONE_BITMAP));
+        taskAdapter.add(new Task(R.string.task_generate_all_bitmaps, TASK_GENERATE_ALL_BITMAPS));
+        taskAdapter.add(new Task(R.string.task_clear_reference_bitmaps,
+                TASK_CLEAR_REFERENCE_BITMAPS));
+        taskAdapter.add(new Task(R.string.task_clear_failure_bitmaps,
+                TASK_CLEAR_FAILED_BITMAPS));
+        setListAdapter(taskAdapter);
+    }
+
+    class Task {
+        private final int mTextId;
+        private final int mTaskId;
+
+        private Task(int textId, int taskId) {
+            mTextId = textId;
+            mTaskId = taskId;
+        }
+
+        @Override
+        public String toString() {
+            return getString(mTextId);
+        }
+    }
+
+    @SuppressWarnings("unchecked")
+    @Override
+    public ArrayAdapter<Task> getListAdapter() {
+        return (ArrayAdapter<Task>) super.getListAdapter();
+    }
+
+    @Override
+    protected void onListItemClick(ListView listView, View view, int position, long id) {
+        Task task = getListAdapter().getItem(position);
+        switch (task.mTaskId) {
+            case TASK_VIEW_TESTS:
+                viewTests();
+                break;
+
+            case TASK_GENERATE_ONE_BITMAP:
+                generateSingleTestBitmaps();
+                break;
+
+            case TASK_GENERATE_ALL_BITMAPS:
+                generateAllBitmaps();
+                break;
+
+            case TASK_CLEAR_REFERENCE_BITMAPS:
+                clearBitmaps(BitmapAssets.TYPE_REFERENCE);
+                break;
+
+            case TASK_CLEAR_FAILED_BITMAPS:
+                clearBitmaps(BitmapAssets.TYPE_FAILED);
+                break;
+
+            default:
+                throw new IllegalArgumentException("Bad task id: " + task.mTaskId);
+        }
+    }
+
+    private void viewTests() {
+        Intent intent = new Intent(this, ThemePickerActivity.class);
+        intent.putExtra(ThemePickerActivity.EXTRA_TASK, ThemeTestActivity.TASK_VIEW_LAYOUTS);
+        startActivity(intent);
+    }
+
+    private void generateSingleTestBitmaps() {
+        Intent intent = new Intent(this, LayoutPickerActivity.class);
+        intent.putExtra(ThemePickerActivity.EXTRA_TASK, ThemeTestActivity.TASK_GENERATE_BITMAPS);
+        startActivity(intent);
+    }
+
+    private void generateAllBitmaps() {
+        Intent intent = new Intent(this, ThemeTestActivity.class);
+        intent.putExtra(ThemeTestActivity.EXTRA_TASK, ThemeTestActivity.TASK_GENERATE_BITMAPS);
+        startActivity(intent);
+    }
+
+    private void clearBitmaps(int type) {
+        Intent intent = new Intent(this, BitmapDeletionActivity.class);
+        intent.putExtra(BitmapDeletionActivity.EXTRA_BITMAP_TYPE, type);
+        startActivity(intent);
+    }
+}
diff --git a/tests/tests/holo/src/android/holo/cts/LayoutAdapter.java b/tests/tests/holo/src/android/holo/cts/LayoutAdapter.java
new file mode 100644
index 0000000..987dfae
--- /dev/null
+++ b/tests/tests/holo/src/android/holo/cts/LayoutAdapter.java
@@ -0,0 +1,324 @@
+/*
+ * Copyright (C) 2011 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.holo.cts;
+
+import com.android.cts.holo.R;
+
+import android.app.ProgressDialog;
+import android.holo.cts.modifiers.AlertDialogBuilder;
+import android.holo.cts.modifiers.CalendarViewModifier;
+import android.holo.cts.modifiers.DialogModifier;
+import android.holo.cts.modifiers.ProgressDialogBuilder;
+import android.holo.cts.modifiers.SearchViewModifier;
+import android.holo.cts.modifiers.TabHostModifier;
+import android.holo.cts.modifiers.TimePickerModifier;
+import android.holo.cts.modifiers.ViewPressedModifier;
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+import android.widget.BaseAdapter;
+import android.widget.TextView;
+
+import java.util.ArrayList;
+import java.util.List;
+
+/**
+ * {@link BaseAdapter} for all the layouts used to test the Holo theme.
+ */
+class LayoutAdapter extends BaseAdapter {
+
+    /** No timeout for widgets in layouts that aren't changed after inflation.  */
+    private static final int NO_TIMEOUT_MS = 0;
+
+    /** Small timeout for letting things like button presses to be handled. */
+    private static final int SHORT_TIMEOUT_MS = 500;
+
+    /** Longer timeout for widgets that have one-time animations. */
+    private static final int LONG_TIMEOUT_MS = 3000;
+
+    static class LayoutInfo {
+        private final int mDisplayName;
+        private final String mFileName;
+        private final int mLayout;
+        private final LayoutModifier mModifier;
+        private final long mTimeoutMs;
+
+        private LayoutInfo(int displayName, String fileName, int layout, LayoutModifier modifier,
+                long timeoutMs) {
+            mDisplayName = displayName;
+            mFileName = fileName;
+            mLayout = layout;
+            mModifier = modifier;
+            mTimeoutMs = timeoutMs;
+        }
+
+        /** @return file name to use for creating reference and failure bitmaps. */
+        public String getBitmapName() {
+            return mFileName;
+        }
+
+        /** @return layout that will be inflated and captured to a bitmap */
+        public int getLayout() {
+            return mLayout;
+        }
+
+        /** @return whether or non the layout has a layout modifier */
+        public boolean hasModifier() {
+            return mModifier != null;
+        }
+
+        /** @return null or modifier that will manipulate the layout after it is inflated */
+        public LayoutModifier getModifier() {
+            return mModifier;
+        }
+
+        /** @return timeout before taking a snapshot of the layout */
+        public long getTimeoutMs() {
+            return mTimeoutMs;
+        }
+    }
+
+    private final List<LayoutInfo> mLayoutInfos = new ArrayList<LayoutInfo>();
+
+    private final LayoutInflater mInflater;
+
+    LayoutAdapter(LayoutInflater inflater) {
+        mInflater = inflater;
+
+        // Widgets
+
+        addLayout(R.string.button, "button",
+                R.layout.button, null, NO_TIMEOUT_MS);
+
+        addLayout(R.string.button_pressed, "button_pressed",
+                R.layout.button, new ViewPressedModifier(), SHORT_TIMEOUT_MS);
+
+        addLayout(R.string.calendarview, "calendar_view",
+                R.layout.calendarview, new CalendarViewModifier(), SHORT_TIMEOUT_MS);
+
+        addLayout(R.string.checkbox, "checkbox",
+                R.layout.checkbox, null, NO_TIMEOUT_MS);
+
+        addLayout(R.string.checkbox_checked, "checkbox_checked",
+                R.layout.checkbox_checked, null, SHORT_TIMEOUT_MS);
+
+        addLayout(R.string.chronometer, "chronometer",
+                R.layout.chronometer, null, NO_TIMEOUT_MS);
+
+        // TODO: DatePicker has a blinking cursor that can be captured in the bitmap...
+        // addLayout(R.string.datepicker, "datepicker",
+        //        R.layout.datepicker, new DatePickerModifier(), LONG_TIMEOUT_MS);
+
+        addLayout(R.string.edittext, "edittext",
+                R.layout.edittext, null, NO_TIMEOUT_MS);
+
+        addLayout(R.string.progressbar, "progressbar",
+                R.layout.progressbar, null, NO_TIMEOUT_MS);
+
+        addLayout(R.string.progressbar_small, "progressbar_small",
+                R.layout.progressbar_small, null, NO_TIMEOUT_MS);
+
+        addLayout(R.string.progressbar_large, "progressbar_large",
+                R.layout.progressbar_large, null, NO_TIMEOUT_MS);
+
+        addLayout(R.string.progressbar_horizontal_0, "progressbar_horizontal_0",
+                R.layout.progressbar_horizontal_0, null, NO_TIMEOUT_MS);
+
+        addLayout(R.string.progressbar_horizontal_50, "progressbar_horizontal_50",
+                R.layout.progressbar_horizontal_50, null, NO_TIMEOUT_MS);
+
+        addLayout(R.string.progressbar_horizontal_100, "progressbar_horizontal_100",
+                R.layout.progressbar_horizontal_100, null, NO_TIMEOUT_MS);
+
+        addLayout(R.string.radiobutton, "radio_button",
+                R.layout.radiobutton, null, NO_TIMEOUT_MS);
+
+        addLayout(R.string.radiobutton_checked, "radio_button_checked",
+                R.layout.radiobutton_checked, null, NO_TIMEOUT_MS);
+
+        addLayout(R.string.radiogroup_horizontal, "radiogroup_horizontal",
+                R.layout.radiogroup_horizontal, null, NO_TIMEOUT_MS);
+
+        addLayout(R.string.radiogroup_vertical, "radiogroup_vertical",
+                R.layout.radiogroup_vertical, null, NO_TIMEOUT_MS);
+
+        addLayout(R.string.ratingbar_0, "ratingbar_0",
+                R.layout.ratingbar_0, null, NO_TIMEOUT_MS);
+
+        addLayout(R.string.ratingbar_2point5, "ratingbar_2point5",
+                R.layout.ratingbar_2point5, null, NO_TIMEOUT_MS);
+
+        addLayout(R.string.ratingbar_5, "ratingbar_5",
+                R.layout.ratingbar_5, null, NO_TIMEOUT_MS);
+
+        addLayout(R.string.ratingbar_0_pressed, "ratingbar_0_pressed",
+                R.layout.ratingbar_0, new ViewPressedModifier(), SHORT_TIMEOUT_MS);
+
+        addLayout(R.string.ratingbar_2point5_pressed, "ratingbar_2point5_pressed",
+                R.layout.ratingbar_2point5, new ViewPressedModifier(), SHORT_TIMEOUT_MS);
+
+        addLayout(R.string.ratingbar_5_pressed, "ratingbar_5_pressed",
+                R.layout.ratingbar_5, new ViewPressedModifier(), SHORT_TIMEOUT_MS);
+
+        addLayout(R.string.searchview, "searchview",
+                R.layout.searchview, null, NO_TIMEOUT_MS);
+
+        addLayout(R.string.searchview_query, "searchview_query",
+                R.layout.searchview, new SearchViewModifier(SearchViewModifier.QUERY),
+                SHORT_TIMEOUT_MS);
+
+        addLayout(R.string.searchview_query_hint, "searchview_query_hint",
+                R.layout.searchview, new SearchViewModifier(SearchViewModifier.QUERY_HINT),
+                SHORT_TIMEOUT_MS);
+
+        addLayout(R.string.seekbar_0, "seekbar_0",
+                R.layout.seekbar_0, null, NO_TIMEOUT_MS);
+
+        addLayout(R.string.seekbar_50, "seekbar_50",
+                R.layout.seekbar_50, null, NO_TIMEOUT_MS);
+
+        addLayout(R.string.seekbar_100, "seekbar_100",
+                R.layout.seekbar_100, null, NO_TIMEOUT_MS);
+
+        addLayout(R.string.spinner, "spinner",
+                R.layout.spinner, null, NO_TIMEOUT_MS);
+
+        addLayout(R.string.switch_button, "switch",
+                R.layout.switch_button, null, NO_TIMEOUT_MS);
+
+        addLayout(R.string.switch_button_checked, "switch_checked",
+                R.layout.switch_button_checked, null, NO_TIMEOUT_MS);
+
+        addLayout(R.string.tabhost, "tabhost",
+                R.layout.tabhost, new TabHostModifier(), SHORT_TIMEOUT_MS);
+
+        addLayout(R.string.textview, "textview",
+                R.layout.textview, null, NO_TIMEOUT_MS);
+
+        addLayout(R.string.timepicker, "timepicker",
+                R.layout.timepicker, new TimePickerModifier(), LONG_TIMEOUT_MS);
+
+        addLayout(R.string.togglebutton, "toggle_button",
+                R.layout.togglebutton, null, NO_TIMEOUT_MS);
+
+        addLayout(R.string.togglebutton_checked, "toggle_button_checked",
+                R.layout.togglebutton_checked, null, NO_TIMEOUT_MS);
+
+        addLayout(R.string.zoomcontrols, "zoomcontrols",
+                R.layout.zoomcontrols, null, NO_TIMEOUT_MS);
+
+        // Dialogs
+
+        addLayout(R.string.alertdialog_onebutton, "alertdialog_onebutton", R.layout.empty,
+                new DialogModifier(new AlertDialogBuilder(AlertDialogBuilder.ONE_BUTTON)),
+                SHORT_TIMEOUT_MS);
+
+        addLayout(R.string.alertdialog_twobuttons, "alertdialog_twobuttons", R.layout.empty,
+                new DialogModifier(new AlertDialogBuilder(AlertDialogBuilder.TWO_BUTTONS)),
+                SHORT_TIMEOUT_MS);
+
+        addLayout(R.string.alertdialog_threebuttons, "alertdialog_threebuttons", R.layout.empty,
+                new DialogModifier(new AlertDialogBuilder(AlertDialogBuilder.THREE_BUTTONS)),
+                SHORT_TIMEOUT_MS);
+
+        addLayout(R.string.alertdialog_list, "alertdialog_list", R.layout.empty,
+                new DialogModifier(new AlertDialogBuilder(AlertDialogBuilder.LIST)),
+                SHORT_TIMEOUT_MS);
+
+        addLayout(R.string.alertdialog_singlechoice, "alertdialog_singlechoice", R.layout.empty,
+                new DialogModifier(new AlertDialogBuilder(AlertDialogBuilder.SINGLE_CHOICE)),
+                SHORT_TIMEOUT_MS);
+
+        addLayout(R.string.alertdialog_multichoice, "alertdialog_multichoice", R.layout.empty,
+                new DialogModifier(new AlertDialogBuilder(AlertDialogBuilder.MULTI_CHOICE)),
+                SHORT_TIMEOUT_MS);
+
+        // TODO: We can't test the spinner, because there is no way to halt the animation.
+        // addLayout(R.string.progressdialog_spinner, "progressdialog_spinner", R.layout.empty,
+        //      new DialogModifier(new ProgressDialogBuilder(ProgressDialog.STYLE_SPINNER)));
+
+        addLayout(R.string.progressdialog_horizontal, "progressdialog_horizontal", R.layout.empty,
+                new DialogModifier(new ProgressDialogBuilder(ProgressDialog.STYLE_HORIZONTAL)),
+                SHORT_TIMEOUT_MS);
+
+        // Colors
+
+        addLayout(R.string.color_blue_bright, "color_blue_bright",
+                R.layout.color_blue_bright, null, NO_TIMEOUT_MS);
+
+        addLayout(R.string.color_blue_dark, "color_blue_dark",
+                R.layout.color_blue_dark, null, NO_TIMEOUT_MS);
+
+        addLayout(R.string.color_blue_light, "color_blue_light",
+                R.layout.color_blue_light, null, NO_TIMEOUT_MS);
+
+        addLayout(R.string.color_green_dark, "color_green_dark",
+                R.layout.color_green_dark, null, NO_TIMEOUT_MS);
+
+        addLayout(R.string.color_green_light, "color_green_light",
+                R.layout.color_green_light, null, NO_TIMEOUT_MS);
+
+        addLayout(R.string.color_orange_dark, "color_orange_dark",
+                R.layout.color_orange_dark, null, NO_TIMEOUT_MS);
+
+        addLayout(R.string.color_orange_light, "color_orange_light",
+                R.layout.color_orange_light, null, NO_TIMEOUT_MS);
+
+        addLayout(R.string.color_purple, "color_purple",
+                R.layout.color_purple, null, NO_TIMEOUT_MS);
+
+        addLayout(R.string.color_red_dark, "color_red_dark",
+                R.layout.color_red_dark, null, NO_TIMEOUT_MS);
+
+        addLayout(R.string.color_red_light, "color_red_light",
+                R.layout.color_red_light, null, NO_TIMEOUT_MS);
+    }
+
+    private void addLayout(int displayName, String fileName, int layout, LayoutModifier modifier,
+            long timeoutMs) {
+        mLayoutInfos.add(new LayoutInfo(displayName, fileName, layout, modifier, timeoutMs));
+    }
+
+    @Override
+    public int getCount() {
+        return mLayoutInfos.size();
+    }
+
+    @Override
+    public LayoutInfo getItem(int position) {
+        return mLayoutInfos.get(position);
+    }
+
+    @Override
+    public long getItemId(int position) {
+        return getItem(position).mLayout;
+    }
+
+    @Override
+    public View getView(int position, View convertView, ViewGroup parent) {
+        TextView textView;
+        if (convertView != null) {
+            textView = (TextView) convertView;
+        } else {
+            textView = (TextView) mInflater.inflate(android.R.layout.simple_list_item_1,
+                    parent, false);
+        }
+        LayoutInfo layoutInfo = getItem(position);
+        textView.setText(layoutInfo.mDisplayName);
+        return textView;
+    }
+}
diff --git a/tests/tests/holo/src/android/holo/cts/LayoutModifier.java b/tests/tests/holo/src/android/holo/cts/LayoutModifier.java
new file mode 100644
index 0000000..f1ba86c
--- /dev/null
+++ b/tests/tests/holo/src/android/holo/cts/LayoutModifier.java
@@ -0,0 +1,31 @@
+/*
+ * Copyright (C) 2011 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.holo.cts;
+
+import android.view.View;
+
+/**
+ * Interface used to do further setup on a view after it has been inflated.
+ */
+public interface LayoutModifier {
+
+    /**
+     * @param view inflated by the test activity
+     * @return the same view or another view that will be snapshotted by the test
+     */
+    View modifyView(View view);
+}
diff --git a/tests/tests/holo/src/android/holo/cts/LayoutPickerActivity.java b/tests/tests/holo/src/android/holo/cts/LayoutPickerActivity.java
new file mode 100644
index 0000000..00c3af0
--- /dev/null
+++ b/tests/tests/holo/src/android/holo/cts/LayoutPickerActivity.java
@@ -0,0 +1,52 @@
+/*
+ * Copyright (C) 2011 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.holo.cts;
+
+import android.app.ListActivity;
+import android.content.Intent;
+import android.os.Bundle;
+import android.view.View;
+import android.widget.ListView;
+
+/**
+ * {@link ListActivity} for picking layouts. Used by the Holo Test Utilities activity.
+ */
+public class LayoutPickerActivity extends ListActivity {
+
+    static final String EXTRA_THEME_INDEX = "themeIndex";
+    static final String EXTRA_TASK = "task";
+
+    private int mThemeIndex;
+    private int mTestTask;
+
+    @Override
+    protected void onCreate(Bundle savedInstanceState) {
+        super.onCreate(savedInstanceState);
+        mThemeIndex = getIntent().getIntExtra(EXTRA_THEME_INDEX, -1);
+        mTestTask = getIntent().getIntExtra(EXTRA_TASK, -1);
+        setListAdapter(new LayoutAdapter(getLayoutInflater()));
+    }
+
+    @Override
+    protected void onListItemClick(ListView l, View v, int position, long id) {
+        Intent intent = new Intent(this, ThemeTestActivity.class);
+        intent.putExtra(ThemeTestActivity.EXTRA_THEME_INDEX, mThemeIndex);
+        intent.putExtra(ThemeTestActivity.EXTRA_LAYOUT_INDEX, position);
+        intent.putExtra(ThemeTestActivity.EXTRA_TASK, mTestTask);
+        startActivity(intent);
+    }
+}
diff --git a/tests/tests/holo/src/android/holo/cts/LayoutTestActivity.java b/tests/tests/holo/src/android/holo/cts/LayoutTestActivity.java
new file mode 100644
index 0000000..e80ce2f
--- /dev/null
+++ b/tests/tests/holo/src/android/holo/cts/LayoutTestActivity.java
@@ -0,0 +1,213 @@
+/*
+ * Copyright (C) 2011 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.holo.cts;
+
+import com.android.cts.holo.R;
+
+import android.app.Activity;
+import android.content.Intent;
+import android.graphics.Bitmap;
+import android.graphics.Canvas;
+import android.holo.cts.LayoutAdapter.LayoutInfo;
+import android.holo.cts.ThemeAdapter.ThemeInfo;
+import android.os.AsyncTask;
+import android.os.Bundle;
+import android.util.Log;
+import android.view.View;
+import android.widget.Toast;
+
+import java.io.FileNotFoundException;
+import java.io.IOException;
+
+/**
+ * {@link Activity} that applies a theme, inflates a layout, and then either
+ * compares or generates a bitmap of the layout.
+ */
+public class LayoutTestActivity extends Activity {
+
+    private static final String TAG = LayoutTestActivity.class.getSimpleName();
+
+    // Input extras
+    static final String EXTRA_THEME_INDEX = "themeIndex";
+    static final String EXTRA_LAYOUT_INDEX = "layoutIndex";
+    static final String EXTRA_TASK = "task";
+
+    // Output extras
+    static final String EXTRA_BITMAP_NAME = "bitmapName";
+    static final String EXTRA_MESSAGE = "message";
+    static final String EXTRA_SUCCESS = "success";
+
+    private View mTestView;
+    private String mBitmapName;
+
+    private ReferenceViewGroup mViewGroup;
+
+    @Override
+    protected void onCreate(Bundle savedInstanceState) {
+        super.onCreate(savedInstanceState);
+
+        int themeIndex = getIntent().getIntExtra(EXTRA_THEME_INDEX, -1);
+        int layoutIndex = getIntent().getIntExtra(EXTRA_LAYOUT_INDEX, -1);
+        int task = getIntent().getIntExtra(EXTRA_TASK, -1);
+
+        ThemeAdapter themeAdapter = new ThemeAdapter(getLayoutInflater());
+        LayoutAdapter layoutAdapter = new LayoutAdapter(getLayoutInflater());
+
+        ThemeInfo themeInfo = themeAdapter.getItem(themeIndex);
+        LayoutInfo layoutInfo = layoutAdapter.getItem(layoutIndex);
+        mBitmapName = BitmapAssets.getBitmapName(themeInfo, layoutInfo);
+
+        setTheme(themeInfo.getTheme());
+        setContentView(R.layout.holo_test);
+
+        // Inflate the view in our special view group that is fixed at a certain size
+        // and layout the inflated view with the fixed measurements...
+        mViewGroup = (ReferenceViewGroup) findViewById(R.id.reference_view_group);
+        mTestView = getLayoutInflater().inflate(layoutInfo.getLayout(), mViewGroup, false);
+        mViewGroup.addView(mTestView);
+        if (layoutInfo.hasModifier()) {
+            mTestView = layoutInfo.getModifier().modifyView(mTestView);
+        }
+        mViewGroup.measure(0,  0);
+        mViewGroup.layout(0, 0, mViewGroup.getMeasuredWidth(), mViewGroup.getMeasuredHeight());
+        mTestView.setFocusable(false);
+
+        switch (task) {
+            case ThemeTestActivity.TASK_VIEW_LAYOUTS:
+                break;
+
+            case ThemeTestActivity.TASK_GENERATE_BITMAPS:
+                mTestView.postDelayed(new GenerateBitmapRunnable(), layoutInfo.getTimeoutMs());
+                break;
+
+            case ThemeTestActivity.TASK_COMPARE_BITMAPS:
+                mTestView.postDelayed(new CompareBitmapRunnable(), layoutInfo.getTimeoutMs());
+                break;
+        }
+    }
+
+    class GenerateBitmapRunnable implements Runnable {
+        @Override
+        public void run() {
+            new GenerateBitmapTask().execute();
+        }
+    }
+
+    class CompareBitmapRunnable implements Runnable {
+        @Override
+        public void run() {
+            new CompareBitmapTask().execute();
+        }
+    }
+
+    class GenerateBitmapTask extends AsyncTask<Void, Void, Boolean> {
+
+        private Bitmap mBitmap;
+
+        @Override
+        protected void onPreExecute() {
+            super.onPreExecute();
+            mBitmap = getBitmap();
+        }
+
+        @Override
+        protected Boolean doInBackground(Void... avoid) {
+            try {
+                return saveBitmap(mBitmap, BitmapAssets.TYPE_REFERENCE) != null;
+            } finally {
+                mBitmap.recycle();
+                mBitmap = null;
+            }
+        }
+
+        @Override
+        protected void onPostExecute(Boolean success) {
+            String path = BitmapAssets.getBitmapPath(mBitmapName,
+                    BitmapAssets.TYPE_REFERENCE).toString();
+            String message = path != null
+                    ? getString(R.string.generate_bitmap_success, path)
+                    : getString(R.string.generate_bitmap_failure, path);
+            Toast.makeText(getApplicationContext(), message, Toast.LENGTH_SHORT).show();
+            finishWithResult(success, message);
+        }
+    }
+
+    class CompareBitmapTask extends AsyncTask<Void, Void, String> {
+        private Bitmap mBitmap;
+        private boolean mSame;
+
+        @Override
+        protected void onPreExecute() {
+            mBitmap = getBitmap();
+            Bitmap referenceBitmap = BitmapAssets.getBitmap(getApplicationContext(), mBitmapName);
+            mSame = mBitmap.sameAs(referenceBitmap);
+        }
+
+        @Override
+        protected String doInBackground(Void... devoid) {
+            try {
+                if (!mSame) {
+                    return saveBitmap(mBitmap, BitmapAssets.TYPE_FAILED);
+                } else {
+                    return null;
+                }
+            } finally {
+                mBitmap.recycle();
+                mBitmap = null;
+            }
+        }
+
+        @Override
+        protected void onPostExecute(String path) {
+            String message = mSame
+                    ? getString(R.string.comparison_success)
+                    : getString(R.string.comparison_failure, path);
+            finishWithResult(mSame, message);
+        }
+    }
+
+    private Bitmap getBitmap() {
+        Log.i(TAG, "Getting bitmap for " + mBitmapName);
+        Bitmap bitmap = Bitmap.createBitmap(mTestView.getWidth(), mTestView.getHeight(),
+                Bitmap.Config.ARGB_8888);
+        Canvas canvas = new Canvas(bitmap);
+        mTestView.draw(canvas);
+        return bitmap;
+    }
+
+    private String saveBitmap(Bitmap bitmap, int type) {
+        try {
+            Log.i(TAG, "Saving bitmap for " + mBitmapName);
+            return BitmapAssets.saveBitmap(bitmap, mBitmapName, type);
+        } catch (FileNotFoundException e) {
+            Log.e(TAG, "FileNotFoundException while saving " + mBitmapName, e);
+            return null;
+        } catch (IOException e) {
+            Log.e(TAG, "IOException while saving " + mBitmapName, e);
+            return null;
+        }
+    }
+
+    private void finishWithResult(boolean success, String message) {
+        Intent data = new Intent();
+        data.putExtra(EXTRA_SUCCESS, success);
+        data.putExtra(EXTRA_MESSAGE, message);
+        data.putExtra(EXTRA_BITMAP_NAME, mBitmapName);
+        setResult(RESULT_OK, data);
+        finish();
+    }
+}
diff --git a/tests/tests/holo/src/android/holo/cts/ReferenceViewGroup.java b/tests/tests/holo/src/android/holo/cts/ReferenceViewGroup.java
new file mode 100644
index 0000000..104ac1d
--- /dev/null
+++ b/tests/tests/holo/src/android/holo/cts/ReferenceViewGroup.java
@@ -0,0 +1,85 @@
+/*
+ * Copyright (C) 2011 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.holo.cts;
+
+import com.android.cts.holo.R;
+
+import android.content.Context;
+import android.content.res.Resources;
+import android.util.AttributeSet;
+import android.view.View;
+import android.view.ViewGroup;
+
+/**
+ * {@link ViewGroup} that inflates to a reference width and height.
+ */
+public class ReferenceViewGroup extends ViewGroup {
+
+    private final int mWidthDp;
+    private final int mHeightDp;
+
+    public ReferenceViewGroup(Context context) {
+        this(context, null);
+    }
+
+    public ReferenceViewGroup(Context context, AttributeSet attrs) {
+        super(context, attrs);
+        Resources resources = context.getResources();
+        mWidthDp = resources.getDimensionPixelSize(R.dimen.reference_width);
+        mHeightDp = resources.getDimensionPixelSize(R.dimen.reference_height);
+    }
+
+    @Override
+    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
+        widthMeasureSpec = getMeasureSpec(LayoutParams.MATCH_PARENT, mWidthDp);
+        heightMeasureSpec = getMeasureSpec(LayoutParams.MATCH_PARENT, mHeightDp);
+
+        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
+
+        int childCount = getChildCount();
+        for (int i = 0; i < childCount; i++) {
+            View child = getChildAt(i);
+            LayoutParams params = child.getLayoutParams();
+            int width = getMeasureSpec(params.width, mWidthDp);
+            int height = getMeasureSpec(params.height, mHeightDp);
+            child.measure(width, height);
+        }
+    }
+
+    private int getMeasureSpec(int value, int size) {
+        if (value == LayoutParams.MATCH_PARENT) {
+            return MeasureSpec.makeMeasureSpec(size, MeasureSpec.EXACTLY);
+        } else if (value == LayoutParams.WRAP_CONTENT) {
+            return MeasureSpec.makeMeasureSpec(size, MeasureSpec.AT_MOST);
+        } else {
+            return value;
+        }
+    }
+
+    @Override
+    protected void onLayout(boolean changed, int l, int t, int r, int b) {
+        if (!changed) {
+            return;
+        }
+
+        int childCount = getChildCount();
+        for (int i = 0; i < childCount; i++) {
+            View child = getChildAt(i);
+            child.layout(0, 0, child.getMeasuredWidth(), child.getMeasuredHeight());
+        }
+    }
+}
diff --git a/tests/tests/holo/src/android/holo/cts/SingleLayoutIterator.java b/tests/tests/holo/src/android/holo/cts/SingleLayoutIterator.java
new file mode 100644
index 0000000..f50a872
--- /dev/null
+++ b/tests/tests/holo/src/android/holo/cts/SingleLayoutIterator.java
@@ -0,0 +1,60 @@
+/*
+ * Copyright (C) 2011 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.holo.cts;
+
+import android.content.Intent;
+
+import java.util.Iterator;
+
+/**
+ * {@link Iterator} over all themes and a single layout.
+ */
+class SingleLayoutIterator implements Iterator<Intent> {
+
+    private final ThemeAdapter mThemeAdapter = new ThemeAdapter(null);
+
+    private final int mTask;
+    private final int mLayoutIndex;
+    private int mThemeIndex;
+
+    SingleLayoutIterator(int layoutIndex, int task) {
+        mTask = task;
+        mLayoutIndex = layoutIndex;
+    }
+
+    @Override
+    public boolean hasNext() {
+        return mThemeIndex < mThemeAdapter.getCount();
+    }
+
+    @Override
+    public Intent next() {
+        Intent intent = new Intent();
+        intent.putExtra(LayoutTestActivity.EXTRA_THEME_INDEX, mThemeIndex);
+        intent.putExtra(LayoutTestActivity.EXTRA_LAYOUT_INDEX, mLayoutIndex);
+        intent.putExtra(LayoutTestActivity.EXTRA_TASK, mTask);
+
+        mThemeIndex++;
+
+        return intent;
+    }
+
+    @Override
+    public void remove() {
+        throw new UnsupportedOperationException("Nope!");
+    }
+}
diff --git a/tests/tests/holo/src/android/holo/cts/SingleThemeIterator.java b/tests/tests/holo/src/android/holo/cts/SingleThemeIterator.java
new file mode 100644
index 0000000..cdfbb8e
--- /dev/null
+++ b/tests/tests/holo/src/android/holo/cts/SingleThemeIterator.java
@@ -0,0 +1,60 @@
+/*
+ * Copyright (C) 2011 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.holo.cts;
+
+import android.content.Intent;
+
+import java.util.Iterator;
+
+/**
+ * {@link Iterator} over a single theme and all the layouts.
+ */
+class SingleThemeIterator implements Iterator<Intent> {
+
+    private final LayoutAdapter mLayoutAdapter = new LayoutAdapter(null);
+
+    private final int mTask;
+    private final int mThemeIndex;
+    private int mLayoutIndex;
+
+    SingleThemeIterator(int themeIndex, int task) {
+        mTask = task;
+        mThemeIndex = themeIndex;
+    }
+
+    @Override
+    public boolean hasNext() {
+        return mLayoutIndex < mLayoutAdapter.getCount();
+    }
+
+    @Override
+    public Intent next() {
+        Intent intent = new Intent();
+        intent.putExtra(LayoutTestActivity.EXTRA_THEME_INDEX, mThemeIndex);
+        intent.putExtra(LayoutTestActivity.EXTRA_LAYOUT_INDEX, mLayoutIndex);
+        intent.putExtra(LayoutTestActivity.EXTRA_TASK, mTask);
+
+        mLayoutIndex++;
+
+        return intent;
+    }
+
+    @Override
+    public void remove() {
+        throw new UnsupportedOperationException("Please stop! That tickles!");
+    }
+}
diff --git a/tests/tests/holo/src/android/holo/cts/SingleThemeLayoutIterator.java b/tests/tests/holo/src/android/holo/cts/SingleThemeLayoutIterator.java
new file mode 100644
index 0000000..e49c9f8
--- /dev/null
+++ b/tests/tests/holo/src/android/holo/cts/SingleThemeLayoutIterator.java
@@ -0,0 +1,58 @@
+/*
+ * Copyright (C) 2011 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.holo.cts;
+
+import android.content.Intent;
+
+import java.util.Iterator;
+
+class SingleThemeLayoutIterator implements Iterator<Intent> {
+
+    private final int mThemeIndex;
+    private final int mLayoutIndex;
+    private final int mTask;
+
+    private boolean hasNext = true;
+
+    SingleThemeLayoutIterator(int themeIndex, int layoutIndex, int task) {
+        mThemeIndex = themeIndex;
+        mLayoutIndex = layoutIndex;
+        mTask = task;
+    }
+
+    @Override
+    public boolean hasNext() {
+        return hasNext;
+    }
+
+    @Override
+    public Intent next() {
+        Intent intent = new Intent();
+        intent.putExtra(LayoutTestActivity.EXTRA_THEME_INDEX, mThemeIndex);
+        intent.putExtra(LayoutTestActivity.EXTRA_LAYOUT_INDEX, mLayoutIndex);
+        intent.putExtra(LayoutTestActivity.EXTRA_TASK, mTask);
+
+        hasNext = false;
+
+        return intent;
+    }
+
+    @Override
+    public void remove() {
+        throw new UnsupportedOperationException("I can't let you do that...");
+    }
+}
diff --git a/tests/tests/holo/src/android/holo/cts/ThemeAdapter.java b/tests/tests/holo/src/android/holo/cts/ThemeAdapter.java
new file mode 100644
index 0000000..60b4a15
--- /dev/null
+++ b/tests/tests/holo/src/android/holo/cts/ThemeAdapter.java
@@ -0,0 +1,196 @@
+/*
+ * Copyright (C) 2011 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.holo.cts;
+
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+import android.widget.BaseAdapter;
+import android.widget.TextView;
+
+import java.util.ArrayList;
+import java.util.List;
+
+/**
+ * {@link BaseAdapter} containing all the themes.
+ */
+class ThemeAdapter extends BaseAdapter  {
+
+    static class ThemeInfo {
+        private final String mName;
+        private final int mTheme;
+        private final String mFileName;
+
+        private ThemeInfo(String name, int theme, String fileName) {
+            mName = name;
+            mTheme = theme;
+            mFileName = fileName;
+        }
+
+        public String getName() {
+            return mName;
+        }
+
+        public int getTheme() {
+            return mTheme;
+        }
+
+        public String getBitmapName() {
+            return mFileName;
+        }
+    }
+
+    private final List<ThemeInfo> mThemeInfos = new ArrayList<ThemeInfo>();
+
+    private final LayoutInflater mInflater;
+
+    ThemeAdapter(LayoutInflater inflater) {
+        mInflater = inflater;
+
+        addTheme("Holo",
+                android.R.style.Theme_Holo,
+                "holo");
+
+        addTheme("Holo Dialog",
+                android.R.style.Theme_Holo_Dialog,
+                "holo_dialog");
+
+        addTheme("Holo Dialog Minimum Width",
+                android.R.style.Theme_Holo_Dialog_MinWidth,
+                "holo_dialog_minwidth");
+
+        addTheme("Holo Dialog No Action Bar",
+                android.R.style.Theme_Holo_Dialog_NoActionBar,
+                "holo_dialog_noactionbar");
+
+        addTheme("Holo Dialog No Action Bar Minimum Width",
+                android.R.style.Theme_Holo_Dialog_NoActionBar_MinWidth,
+                "holo_dialog_noactionbar_minwidth");
+
+        addTheme("Holo Dialog When Large",
+                android.R.style.Theme_Holo_DialogWhenLarge,
+                "holo_dialogwhenlarge");
+
+        addTheme("Holo Dialog When Large No Action Bar",
+                android.R.style.Theme_Holo_DialogWhenLarge_NoActionBar,
+                "holo_dialogwhenlarge_noactionbar");
+
+        addTheme("Holo Input Method",
+                android.R.style.Theme_Holo_InputMethod,
+                "holo_inputmethod");
+
+        addTheme("Holo Light",
+                android.R.style.Theme_Holo_Light,
+                "holo_light");
+
+        addTheme("Holo Light Dark Action Bar",
+                android.R.style.Theme_Holo_Light_DarkActionBar,
+                "holo_light_darkactionbar");
+
+        addTheme("Holo Light Dialog",
+                android.R.style.Theme_Holo_Light_Dialog,
+                "holo_light_dialog");
+
+        addTheme("Holo Light Dialog Minimum Width",
+                android.R.style.Theme_Holo_Light_Dialog_MinWidth,
+                "holo_light_dialog_minwidth");
+
+        addTheme("Holo Light Dialog No Action Bar",
+                android.R.style.Theme_Holo_Light_Dialog_NoActionBar,
+                "holo_light_dialog_noactionbar");
+
+        addTheme("Holo Light Dialog No Action Bar Minimum Width",
+                android.R.style.Theme_Holo_Light_Dialog_NoActionBar_MinWidth,
+                "holo_light_dialog_noactionbar_minwidth");
+
+        addTheme("Holo Light Dialog When Large",
+                android.R.style.Theme_Holo_Light_DialogWhenLarge,
+                "holo_light_dialogwhenlarge");
+
+        addTheme("Holo Light Dialog When Large No Action Bar",
+                android.R.style.Theme_Holo_Light_DialogWhenLarge_NoActionBar,
+                "holo_light_dialogwhenlarge_noactionbar");
+
+        addTheme("Holo Light No Action Bar",
+                android.R.style.Theme_Holo_Light_NoActionBar,
+                "holo_light_noactionbar");
+
+        addTheme("Holo Light No Action Bar Fullscreen",
+                android.R.style.Theme_Holo_Light_NoActionBar_Fullscreen,
+                "holo_light_noactionbar_fullscreen");
+
+        addTheme("Holo Light Panel",
+                android.R.style.Theme_Holo_Light_Panel,
+                "holo_light_panel");
+
+        addTheme("Holo No Action Bar",
+                android.R.style.Theme_Holo_NoActionBar,
+                "holo_noactionbar");
+
+        addTheme("Holo No Action Bar Fullscreen",
+                android.R.style.Theme_Holo_NoActionBar_Fullscreen,
+                "holo_noactionbar_fullscreen");
+
+        addTheme("Holo Panel",
+                android.R.style.Theme_Holo_Panel,
+                "holo_panel");
+
+        addTheme("Holo Wallpaper",
+                android.R.style.Theme_Holo_Wallpaper,
+                "holo_wallpaper");
+
+        addTheme("Holo Wallpaper No Title Bar",
+                android.R.style.Theme_Holo_Wallpaper_NoTitleBar,
+                "holo_wallpaper_notitlebar");
+
+        // NOTE: Adding a theme doesn't mean it will be tested. You have to add an explicit
+        //       test in HoloTest for it!
+    }
+
+    private void addTheme(String name, int theme, String fileNamePrefix) {
+        mThemeInfos.add(new ThemeInfo(name, theme, fileNamePrefix));
+    }
+
+    @Override
+    public int getCount() {
+        return mThemeInfos.size();
+    }
+
+    @Override
+    public ThemeInfo getItem(int position) {
+        return mThemeInfos.get(position);
+    }
+
+    @Override
+    public long getItemId(int position) {
+        return getItem(position).mTheme;
+    }
+
+    @Override
+    public View getView(int position, View convertView, ViewGroup parent) {
+        TextView textView;
+        if (convertView != null) {
+            textView = (TextView) convertView;
+        } else {
+            textView = (TextView) mInflater.inflate(android.R.layout.simple_list_item_1,
+                    parent, false);
+        }
+        ThemeInfo themeInfo = getItem(position);
+        textView.setText(themeInfo.mName);
+        return textView;
+    }
+}
diff --git a/tests/tests/holo/src/android/holo/cts/ThemePickerActivity.java b/tests/tests/holo/src/android/holo/cts/ThemePickerActivity.java
new file mode 100644
index 0000000..9ded478
--- /dev/null
+++ b/tests/tests/holo/src/android/holo/cts/ThemePickerActivity.java
@@ -0,0 +1,48 @@
+/*
+ * Copyright (C) 2011 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.holo.cts;
+
+import android.app.ListActivity;
+import android.content.Intent;
+import android.os.Bundle;
+import android.view.View;
+import android.widget.ListView;
+
+/**
+ * {@link ListActivity} for picking themes.
+ */
+public class ThemePickerActivity extends ListActivity {
+
+    static final String EXTRA_TASK = "task";
+
+    private int mTestTask;
+
+    @Override
+    protected void onCreate(Bundle savedInstanceState) {
+        super.onCreate(savedInstanceState);
+        mTestTask = getIntent().getIntExtra(EXTRA_TASK, -1);
+        setListAdapter(new ThemeAdapter(getLayoutInflater()));
+    }
+
+    @Override
+    protected void onListItemClick(ListView l, View v, int position, long id) {
+        Intent intent = new Intent(this, LayoutPickerActivity.class);
+        intent.putExtra(LayoutPickerActivity.EXTRA_THEME_INDEX, position);
+        intent.putExtra(LayoutPickerActivity.EXTRA_TASK, mTestTask);
+        startActivity(intent);
+    }
+}
diff --git a/tests/tests/holo/src/android/holo/cts/ThemeTestActivity.java b/tests/tests/holo/src/android/holo/cts/ThemeTestActivity.java
new file mode 100644
index 0000000..828868f
--- /dev/null
+++ b/tests/tests/holo/src/android/holo/cts/ThemeTestActivity.java
@@ -0,0 +1,204 @@
+/*
+ * Copyright (C) 2011 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.holo.cts;
+
+import android.app.Activity;
+import android.content.Intent;
+import android.os.Bundle;
+import android.util.Log;
+
+import java.util.Iterator;
+import java.util.concurrent.CountDownLatch;
+import java.util.concurrent.Future;
+import java.util.concurrent.TimeUnit;
+import java.util.concurrent.TimeoutException;
+
+/**
+ * {@link Activity} that iterates over all the test layouts for a single theme
+ * and either compares or generates bitmaps.
+ */
+public class ThemeTestActivity extends Activity {
+
+    private static final String TAG = ThemeTestActivity.class.getSimpleName();
+
+    static final String EXTRA_TASK = "task";
+    static final String EXTRA_THEME_INDEX = "themeIndex";
+    static final String EXTRA_LAYOUT_INDEX = "layoutIndex";
+
+    static final int TASK_VIEW_LAYOUTS = 1;
+    static final int TASK_GENERATE_BITMAPS = 2;
+    static final int TASK_COMPARE_BITMAPS = 3;
+
+    private static final int VIEW_TESTS_REQUEST_CODE = 1;
+    private static final int GENERATE_BITMAP_REQUEST_CODE = 2;
+    private static final int COMPARE_BITMAPS_REQUEST_CODE = 3;
+
+    private int mRequestCode;
+    private Iterator<Intent> mIterator;
+    private ResultFuture<Result> mResultFuture;
+
+    @Override
+    protected void onCreate(Bundle savedInstanceState) {
+        super.onCreate(savedInstanceState);
+
+        mResultFuture = new ResultFuture<Result>();
+
+        int task = getIntent().getIntExtra(EXTRA_TASK, -1);
+        switch (task) {
+            case TASK_VIEW_LAYOUTS:
+                mRequestCode = VIEW_TESTS_REQUEST_CODE;
+                break;
+
+            case TASK_GENERATE_BITMAPS:
+                mRequestCode = GENERATE_BITMAP_REQUEST_CODE;
+                break;
+
+            case TASK_COMPARE_BITMAPS:
+                // Don't delete any failure bitmap images that may be useful.
+                mRequestCode = COMPARE_BITMAPS_REQUEST_CODE;
+                break;
+
+            default:
+                throw new IllegalArgumentException("Bad task: " + task);
+        }
+
+        int themeIndex = getIntent().getIntExtra(EXTRA_THEME_INDEX, -1);
+        int layoutIndex = getIntent().getIntExtra(EXTRA_LAYOUT_INDEX, -1);
+
+        Log.i(TAG, "Theme index: " + themeIndex + " Layout index: " + layoutIndex);
+
+        if (themeIndex < 0 && layoutIndex < 0) {
+            mIterator = new AllThemesIterator(task);
+        } else if (themeIndex >= 0 && layoutIndex >= 0) {
+            mIterator = new SingleThemeLayoutIterator(themeIndex, layoutIndex, task);
+        } else if (layoutIndex >= 0) {
+            mIterator = new SingleLayoutIterator(layoutIndex, task);
+        } else if (themeIndex >= 0) {
+            mIterator = new SingleThemeIterator(themeIndex, task);
+        } else {
+            throw new IllegalStateException();
+        }
+
+        generateNextBitmap();
+    }
+
+    private void generateNextBitmap() {
+        if (mIterator.hasNext()) {
+            Intent intent = mIterator.next();
+            intent.setClass(this, LayoutTestActivity.class);
+            startActivityForResult(intent, mRequestCode);
+        } else {
+            mResultFuture.set(new Result(true, null));
+        }
+    }
+
+    @Override
+    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
+        switch (requestCode) {
+            case VIEW_TESTS_REQUEST_CODE:
+                return;
+
+            case GENERATE_BITMAP_REQUEST_CODE:
+            case COMPARE_BITMAPS_REQUEST_CODE:
+                handleResult(resultCode, data);
+                break;
+
+            default:
+                throw new IllegalArgumentException("Bad request code: " + requestCode);
+        }
+    }
+
+    private void handleResult(int resultCode, Intent data) {
+        if (resultCode == RESULT_CANCELED) {
+            throw new IllegalStateException("Did you interrupt the activity?");
+        }
+
+        boolean success = data.getBooleanExtra(LayoutTestActivity.EXTRA_SUCCESS, false);
+        if (success) {
+            generateNextBitmap();
+        } else {
+            String message = data.getStringExtra(LayoutTestActivity.EXTRA_MESSAGE);
+            mResultFuture.set(new Result(false, message));
+        }
+    }
+
+    public Future<Result> getResultFuture() {
+        return mResultFuture;
+    }
+
+    static class Result {
+
+        private boolean mPass;
+
+        private String mMessage;
+
+        Result(boolean pass, String message) {
+            mPass = pass;
+            mMessage = message;
+        }
+
+        public boolean passed() {
+            return mPass;
+        }
+
+        public String getMessage() {
+            return mMessage;
+        }
+    }
+
+    class ResultFuture<T> implements Future<T> {
+
+        private final CountDownLatch mLatch = new CountDownLatch(1);
+
+        private T mResult;
+
+        public void set(T result) {
+            mResult = result;
+            mLatch.countDown();
+        }
+
+        @Override
+        public T get() throws InterruptedException {
+            mLatch.await();
+            return mResult;
+        }
+
+        @Override
+        public T get(long timeout, TimeUnit unit) throws InterruptedException,
+                TimeoutException {
+            if (!mLatch.await(timeout, unit)) {
+                throw new TimeoutException();
+            }
+            return mResult;
+        }
+
+        @Override
+        public boolean isDone() {
+            return mLatch.getCount() > 0;
+        }
+
+        @Override
+        public boolean cancel(boolean mayInterruptIfRunning) {
+            return false;
+        }
+
+        @Override
+        public boolean isCancelled() {
+            return false;
+        }
+    }
+}
diff --git a/tests/tests/holo/src/android/holo/cts/modifiers/AlertDialogBuilder.java b/tests/tests/holo/src/android/holo/cts/modifiers/AlertDialogBuilder.java
new file mode 100644
index 0000000..1f4c100
--- /dev/null
+++ b/tests/tests/holo/src/android/holo/cts/modifiers/AlertDialogBuilder.java
@@ -0,0 +1,82 @@
+/*
+ * Copyright (C) 2011 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.holo.cts.modifiers;
+
+import android.app.AlertDialog;
+import android.app.Dialog;
+import android.view.View;
+
+public class AlertDialogBuilder implements DialogBuilder {
+
+    public static final int ONE_BUTTON = 0;
+
+    public static final int TWO_BUTTONS = 1;
+
+    public static final int THREE_BUTTONS = 2;
+
+    public static final int LIST = 3;
+
+    public static final int SINGLE_CHOICE = 4;
+
+    public static final int MULTI_CHOICE = 5;
+
+    private int mDialogType;
+
+    private static final CharSequence[] ITEMS = {"Red", "Green", "Blue"};
+
+    public AlertDialogBuilder(int dialogType) {
+        mDialogType = dialogType;
+    }
+
+    @Override
+    public Dialog buildDialog(View view) {
+        AlertDialog.Builder builder = new AlertDialog.Builder(view.getContext());
+
+        switch (mDialogType) {
+            case ONE_BUTTON:
+                builder.setTitle("Exit Dialog")
+                        .setMessage("Are you sure you want to exit?")
+                        .setPositiveButton("Exit", null);
+                break;
+            case TWO_BUTTONS:
+                builder.setMessage("Are you sure you want to exit?")
+                        .setPositiveButton("Exit", null)
+                        .setNegativeButton("Cancel", null);
+                break;
+            case THREE_BUTTONS:
+                builder.setMessage("Are you sure you want to exit?")
+                        .setPositiveButton("Exit", null)
+                        .setNeutralButton("Neutral", null)
+                        .setNegativeButton("Cancel", null);
+                break;
+            case LIST:
+                builder.setTitle("Pick a Color")
+                        .setItems(ITEMS, null);
+                break;
+            case SINGLE_CHOICE:
+                builder.setTitle("Pick a Color")
+                        .setSingleChoiceItems(ITEMS, 1, null);
+                break;
+            case MULTI_CHOICE:
+                builder.setTitle("Pick a Color")
+                        .setMultiChoiceItems(ITEMS, new boolean[]{false, true, false}, null);
+                break;
+        }
+
+        return builder.show();
+    }
+}
\ No newline at end of file
diff --git a/tests/tests/holo/src/android/holo/cts/modifiers/CalendarViewModifier.java b/tests/tests/holo/src/android/holo/cts/modifiers/CalendarViewModifier.java
new file mode 100644
index 0000000..d6538fe
--- /dev/null
+++ b/tests/tests/holo/src/android/holo/cts/modifiers/CalendarViewModifier.java
@@ -0,0 +1,38 @@
+/*
+ * Copyright (C) 2011 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.holo.cts.modifiers;
+
+import android.holo.cts.LayoutModifier;
+import android.view.View;
+import android.widget.CalendarView;
+
+/**
+ * {@LayoutModifier} to set a precise date on a {@link CalendarView}.
+ */
+public class CalendarViewModifier implements LayoutModifier {
+    /**
+     * Long representation of a date that is 30 years in milliseconds from
+     * Unix epoch (January 1, 1970 00:00:00).
+     */
+    private static final long DATE = 946707779241L;
+
+    @Override
+    public View modifyView(View view) {
+        ((CalendarView) view).setDate(DATE);
+        return view;
+    }
+}
diff --git a/tests/tests/holo/src/android/holo/cts/modifiers/DatePickerModifier.java b/tests/tests/holo/src/android/holo/cts/modifiers/DatePickerModifier.java
new file mode 100644
index 0000000..7b5a08b
--- /dev/null
+++ b/tests/tests/holo/src/android/holo/cts/modifiers/DatePickerModifier.java
@@ -0,0 +1,34 @@
+/*
+ * Copyright (C) 2011 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.holo.cts.modifiers;
+
+import android.holo.cts.LayoutModifier;
+import android.view.View;
+import android.widget.DatePicker;
+
+/**
+ * {@link LayoutModifier} that sets a precise date on a {@link DatePicker}.
+ */
+public class DatePickerModifier implements LayoutModifier {
+
+    @Override
+    public View modifyView(View view) {
+        DatePicker tp = (DatePicker) view;
+        tp.updateDate(2011, 4, 20);
+        return view;
+    }
+}
diff --git a/tests/tests/holo/src/android/holo/cts/modifiers/DialogBuilder.java b/tests/tests/holo/src/android/holo/cts/modifiers/DialogBuilder.java
new file mode 100644
index 0000000..94712b5
--- /dev/null
+++ b/tests/tests/holo/src/android/holo/cts/modifiers/DialogBuilder.java
@@ -0,0 +1,31 @@
+/*
+ * Copyright (C) 2011 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.holo.cts.modifiers;
+
+import android.app.Dialog;
+import android.view.View;
+
+/**
+ * Interface to implement should you want to write a test that uses
+ * a Dialog. Since a Dialog shows in a new window, implementation
+ * of this interface is required in order to appropriately save
+ * the Dialog for testing.
+ */
+interface DialogBuilder {
+
+    Dialog buildDialog(View view);
+}
\ No newline at end of file
diff --git a/tests/tests/holo/src/android/holo/cts/modifiers/DialogModifier.java b/tests/tests/holo/src/android/holo/cts/modifiers/DialogModifier.java
new file mode 100644
index 0000000..51a7fa6
--- /dev/null
+++ b/tests/tests/holo/src/android/holo/cts/modifiers/DialogModifier.java
@@ -0,0 +1,54 @@
+/*
+ * Copyright (C) 2011 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.holo.cts.modifiers;
+
+import android.app.Dialog;
+import android.holo.cts.LayoutModifier;
+import android.view.View;
+import android.view.ViewGroup;
+
+/**
+ * Wacky {@link LayoutModifier} that takes a {@link Dialog} and transplants into the
+ * parent view group.
+ */
+public class DialogModifier implements LayoutModifier {
+
+    private DialogBuilder mBuilder;
+
+    public DialogModifier(DialogBuilder builder) {
+        mBuilder = builder;
+    }
+
+    @Override
+    public View modifyView(View view) {
+        Dialog dialog = mBuilder.buildDialog(view);
+
+        ViewGroup parent = (ViewGroup) view.getParent();
+        parent.removeView(view); // remove the filler view
+
+        // get the dialog as a view
+        View newView = dialog.getWindow().getDecorView();
+
+        // remove it from the dialog
+        dialog.getWindow().getWindowManager().removeView(newView);
+
+        // so we can add it to our ViewGroup
+        parent.addView(newView);
+
+        return newView;
+    }
+}
diff --git a/tests/tests/holo/src/android/holo/cts/modifiers/ProgressDialogBuilder.java b/tests/tests/holo/src/android/holo/cts/modifiers/ProgressDialogBuilder.java
new file mode 100644
index 0000000..b2c7744
--- /dev/null
+++ b/tests/tests/holo/src/android/holo/cts/modifiers/ProgressDialogBuilder.java
@@ -0,0 +1,56 @@
+/*
+ * Copyright (C) 2011 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.holo.cts.modifiers;
+
+import com.android.cts.holo.R;
+
+import android.app.Dialog;
+import android.app.ProgressDialog;
+import android.content.Context;
+import android.view.View;
+
+public class ProgressDialogBuilder implements DialogBuilder {
+
+    private int mDialogType;
+
+    public ProgressDialogBuilder(int dialogType) {
+        mDialogType = dialogType;
+    }
+
+    @Override
+    public Dialog buildDialog(View view) {
+        Context context = view.getContext();
+        ProgressDialog progressDialog = new ProgressDialog(view.getContext());
+        progressDialog.setMessage(context.getString(R.string.loading));
+
+        switch (mDialogType) {
+            case ProgressDialog.STYLE_SPINNER:
+                progressDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
+                break;
+
+            case ProgressDialog.STYLE_HORIZONTAL:
+                progressDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
+                progressDialog.setMax(100);
+                break;
+
+            default:
+                throw new IllegalArgumentException("Bad dialog type: " + mDialogType);
+        }
+        progressDialog.show();
+        return progressDialog;
+    }
+}
diff --git a/tests/tests/holo/src/android/holo/cts/modifiers/SearchViewModifier.java b/tests/tests/holo/src/android/holo/cts/modifiers/SearchViewModifier.java
new file mode 100644
index 0000000..2c44241
--- /dev/null
+++ b/tests/tests/holo/src/android/holo/cts/modifiers/SearchViewModifier.java
@@ -0,0 +1,58 @@
+/*
+ * Copyright (C) 2011 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.holo.cts.modifiers;
+
+import com.android.cts.holo.R;
+
+import android.content.Context;
+import android.holo.cts.LayoutModifier;
+import android.view.View;
+import android.widget.SearchView;
+
+public class SearchViewModifier implements LayoutModifier {
+
+    public static final int QUERY_HINT = 0;
+    public static final int QUERY = 1;
+
+    private int mSearchViewType;
+
+    public SearchViewModifier(int searchViewType) {
+        mSearchViewType = searchViewType;
+    }
+
+    @Override
+    public View modifyView(View view) {
+        SearchView searchView = (SearchView) view;
+        Context context = view.getContext();
+
+        switch (mSearchViewType) {
+            case QUERY_HINT:
+                searchView.setQueryHint(context.getString(R.string.searchview_query_hint));
+                break;
+
+            case QUERY:
+                searchView.setQuery(context.getString(R.string.searchview_query), false);
+                break;
+
+            default:
+                throw new IllegalArgumentException("Bad search view type: " + mSearchViewType);
+        }
+
+        searchView.setIconifiedByDefault(false);
+        return searchView;
+    }
+}
diff --git a/tests/tests/holo/src/android/holo/cts/modifiers/TabHostModifier.java b/tests/tests/holo/src/android/holo/cts/modifiers/TabHostModifier.java
new file mode 100644
index 0000000..770b905
--- /dev/null
+++ b/tests/tests/holo/src/android/holo/cts/modifiers/TabHostModifier.java
@@ -0,0 +1,48 @@
+/*
+ * Copyright (C) 2011 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.holo.cts.modifiers;
+
+import com.android.cts.holo.R;
+
+import android.holo.cts.LayoutModifier;
+import android.view.View;
+import android.widget.TabHost;
+
+public class TabHostModifier implements LayoutModifier {
+
+    @Override
+    public View modifyView(View view) {
+        TabHost tabHost = (TabHost) view;
+        tabHost.setup();
+
+        tabHost.addTab(tabHost.newTabSpec("1")
+                .setIndicator("Tab 1")
+                .setContent(R.id.tab_inner_view));
+
+        tabHost.addTab(tabHost.newTabSpec("2")
+                .setIndicator("Tab 2")
+                .setContent(R.id.tab_inner_view));
+
+        tabHost.addTab(tabHost.newTabSpec("3")
+                .setIndicator("Tab 3")
+                .setContent(R.id.tab_inner_view));
+
+        tabHost.setCurrentTab(2);
+
+        return view;
+    }
+}
diff --git a/tests/tests/holo/src/android/holo/cts/modifiers/TimePickerModifier.java b/tests/tests/holo/src/android/holo/cts/modifiers/TimePickerModifier.java
new file mode 100644
index 0000000..ca2bc1e
--- /dev/null
+++ b/tests/tests/holo/src/android/holo/cts/modifiers/TimePickerModifier.java
@@ -0,0 +1,33 @@
+/*
+ * Copyright (C) 2011 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.holo.cts.modifiers;
+
+import android.holo.cts.LayoutModifier;
+import android.view.View;
+import android.widget.TimePicker;
+
+public class TimePickerModifier implements LayoutModifier {
+
+    @Override
+    public View modifyView(View view) {
+        TimePicker timePicker = (TimePicker) view;
+        timePicker.setIs24HourView(true);
+        timePicker.setCurrentHour(13);
+        timePicker.setCurrentMinute(37);
+        return view;
+    }
+}
diff --git a/tests/tests/holo/src/android/holo/cts/modifiers/ViewPressedModifier.java b/tests/tests/holo/src/android/holo/cts/modifiers/ViewPressedModifier.java
new file mode 100644
index 0000000..ebe2375
--- /dev/null
+++ b/tests/tests/holo/src/android/holo/cts/modifiers/ViewPressedModifier.java
@@ -0,0 +1,29 @@
+/*
+ * Copyright (C) 2011 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.holo.cts.modifiers;
+
+import android.holo.cts.LayoutModifier;
+import android.view.View;
+
+public class ViewPressedModifier implements LayoutModifier {
+
+    @Override
+    public View modifyView(View view) {
+        view.setPressed(true);
+        return view;
+    }
+}